Package org.alfresco.rest.api.nodes
Interface NodeAssocService
-
- All Known Implementing Classes:
NodeAssocServiceImpl
public interface NodeAssocService
Deprecated.Intermediate wrapper (not a public service) - eventually push permissions down to NodeService- Author:
- janv
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description AssociationRef
createAssociation(NodeRef sourceRef, NodeRef targetRef, QName assocTypeQName)
Deprecated.AssociationRef
getAssoc(Long id)
Deprecated.List<AssociationRef>
getSourceAssocs(NodeRef targetRef, QNamePattern qnamePattern)
Deprecated.List<AssociationRef>
getTargetAssocs(NodeRef sourceRef, QNamePattern qnamePattern)
Deprecated.List<AssociationRef>
getTargetAssocsByPropertyValue(NodeRef sourceRef, QNamePattern qnamePattern, QName propertyQName, Serializable propertyValue)
Deprecated.void
removeAssociation(NodeRef sourceRef, NodeRef targetRef, QName assocTypeQName)
Deprecated.void
setAssociations(NodeRef sourceRef, QName assocTypeQName, List<NodeRef> targetRefs)
Deprecated.
-
-
-
Method Detail
-
createAssociation
AssociationRef createAssociation(NodeRef sourceRef, NodeRef targetRef, QName assocTypeQName) throws InvalidNodeRefException, AssociationExistsException
Deprecated.
-
removeAssociation
void removeAssociation(NodeRef sourceRef, NodeRef targetRef, QName assocTypeQName) throws InvalidNodeRefException
Deprecated.- Throws:
InvalidNodeRefException
-
setAssociations
void setAssociations(NodeRef sourceRef, QName assocTypeQName, List<NodeRef> targetRefs)
Deprecated.
-
getAssoc
AssociationRef getAssoc(Long id)
Deprecated.
-
getTargetAssocs
List<AssociationRef> getTargetAssocs(NodeRef sourceRef, QNamePattern qnamePattern) throws InvalidNodeRefException
Deprecated.- Throws:
InvalidNodeRefException
-
getTargetAssocsByPropertyValue
List<AssociationRef> getTargetAssocsByPropertyValue(NodeRef sourceRef, QNamePattern qnamePattern, QName propertyQName, Serializable propertyValue)
Deprecated.
-
getSourceAssocs
List<AssociationRef> getSourceAssocs(NodeRef targetRef, QNamePattern qnamePattern) throws InvalidNodeRefException
Deprecated.- Throws:
InvalidNodeRefException
-
-