Package org.alfresco.repo.domain.node
Class ReferenceablePropertiesEntity
- java.lang.Object
-
- org.alfresco.repo.domain.node.ReferenceablePropertiesEntity
-
public class ReferenceablePropertiesEntity extends java.lang.ObjectClass holding properties associated with the sys:referenceable aspect. This aspect is common enough to warrant direct inclusion on the Node entity.- Since:
- 3.4
- Author:
- Derek Hulley
-
-
Constructor Summary
Constructors Constructor Description ReferenceablePropertiesEntity()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidaddReferenceableProperties(Node node, java.util.Map<org.alfresco.service.namespace.QName,java.io.Serializable> properties)Adds allreferencableproperties.static java.io.SerializablegetReferenceableProperty(Node node, org.alfresco.service.namespace.QName qname)static booleanisReferenceableProperty(org.alfresco.service.namespace.QName qname)static voidremoveReferenceableProperties(java.util.Set<org.alfresco.service.namespace.QName> propertyQNames)Remove allreferencablepropertiesstatic voidremoveReferenceableProperties(Node node, java.util.Map<org.alfresco.service.namespace.QName,java.io.Serializable> properties)Remove allreferencableproperties
-
-
-
Method Detail
-
isReferenceableProperty
public static boolean isReferenceableProperty(org.alfresco.service.namespace.QName qname)
- Returns:
- Returns true if the property belongs to the sys:referenceable aspect
-
removeReferenceableProperties
public static void removeReferenceableProperties(Node node, java.util.Map<org.alfresco.service.namespace.QName,java.io.Serializable> properties)
Remove allreferencableproperties
-
removeReferenceableProperties
public static void removeReferenceableProperties(java.util.Set<org.alfresco.service.namespace.QName> propertyQNames)
Remove allreferencableproperties
-
addReferenceableProperties
public static void addReferenceableProperties(Node node, java.util.Map<org.alfresco.service.namespace.QName,java.io.Serializable> properties)
Adds allreferencableproperties.
-
getReferenceableProperty
public static java.io.Serializable getReferenceableProperty(Node node, org.alfresco.service.namespace.QName qname)
-
-