Package org.alfresco.rest.api.nodes
Class NodeAssocServiceImpl
- java.lang.Object
-
- org.alfresco.rest.api.nodes.NodeAssocServiceImpl
-
- All Implemented Interfaces:
NodeAssocService
public class NodeAssocServiceImpl extends Object implements NodeAssocService
Deprecated.Intermediate wrapper (not a public service) - eventually push permissions down to NodeService- Author:
- janv
-
-
Field Summary
Fields Modifier and Type Field Description protected NodeServicenodeServiceDeprecated.
-
Constructor Summary
Constructors Constructor Description NodeAssocServiceImpl()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description AssociationRefcreateAssociation(NodeRef sourceRef, NodeRef targetRef, QName assocTypeQName)Deprecated.AssociationRefgetAssoc(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.voidremoveAssociation(NodeRef sourceRef, NodeRef targetRef, QName assocTypeQName)Deprecated.voidsetAssociations(NodeRef sourceRef, QName assocTypeQName, List<NodeRef> targetRefs)Deprecated.voidsetNodeService(NodeService nodeService)Deprecated.
-
-
-
Field Detail
-
nodeService
protected NodeService nodeService
Deprecated.
-
-
Method Detail
-
setNodeService
public void setNodeService(NodeService nodeService)
Deprecated.
-
createAssociation
public AssociationRef createAssociation(NodeRef sourceRef, NodeRef targetRef, QName assocTypeQName) throws InvalidNodeRefException, AssociationExistsException
Deprecated.- Specified by:
createAssociationin interfaceNodeAssocService- Throws:
InvalidNodeRefExceptionAssociationExistsException
-
removeAssociation
public void removeAssociation(NodeRef sourceRef, NodeRef targetRef, QName assocTypeQName) throws InvalidNodeRefException
Deprecated.- Specified by:
removeAssociationin interfaceNodeAssocService- Throws:
InvalidNodeRefException
-
setAssociations
public void setAssociations(NodeRef sourceRef, QName assocTypeQName, List<NodeRef> targetRefs)
Deprecated.- Specified by:
setAssociationsin interfaceNodeAssocService
-
getAssoc
public AssociationRef getAssoc(Long id)
Deprecated.- Specified by:
getAssocin interfaceNodeAssocService
-
getTargetAssocs
public List<AssociationRef> getTargetAssocs(NodeRef sourceRef, QNamePattern qnamePattern) throws InvalidNodeRefException
Deprecated.- Specified by:
getTargetAssocsin interfaceNodeAssocService- Throws:
InvalidNodeRefException
-
getTargetAssocsByPropertyValue
public List<AssociationRef> getTargetAssocsByPropertyValue(NodeRef sourceRef, QNamePattern qnamePattern, QName propertyQName, Serializable propertyValue)
Deprecated.- Specified by:
getTargetAssocsByPropertyValuein interfaceNodeAssocService
-
getSourceAssocs
public List<AssociationRef> getSourceAssocs(NodeRef targetRef, QNamePattern qnamePattern) throws InvalidNodeRefException
Deprecated.- Specified by:
getSourceAssocsin interfaceNodeAssocService- Throws:
InvalidNodeRefException
-
-