Interface TransferService
-
- All Known Implementing Classes:
TransferServiceImpl
@AlfrescoPublicApi public interface TransferService
Transfer Service Interface- Since:
- 2.2
- Author:
- Tuna Aksoy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
completeTransfer(NodeRef nodeRef)
Completes the transfer for the given node.boolean
isTransfer(NodeRef nodeRef)
Indicates whether the given node is a transfer (container) or not.NodeRef
transfer(NodeRef nodeRef, boolean isAccession)
Create the transfer node and link the disposition lifecycle node beneath it
-
-
-
Method Detail
-
isTransfer
boolean isTransfer(NodeRef nodeRef)
Indicates whether the given node is a transfer (container) or not.- Parameters:
nodeRef
- node reference- Returns:
- boolean true if transfer, false otherwise
- Since:
- 2.0
-
transfer
NodeRef transfer(NodeRef nodeRef, boolean isAccession)
Create the transfer node and link the disposition lifecycle node beneath it- Parameters:
nodeRef
- node reference to transferisAccession
- Indicates whether this transfer is an accession or not- Returns:
- Returns the transfer object node reference
- Since:
- 2.2
-
completeTransfer
void completeTransfer(NodeRef nodeRef)
Completes the transfer for the given node.- Parameters:
nodeRef
- node reference to complete the transfer- Since:
- 2.2
-
-