Class RelationshipDefinitionImpl
- java.lang.Object
-
- org.alfresco.module.org_alfresco_module_rm.relationship.RelationshipDefinitionImpl
-
- All Implemented Interfaces:
RelationshipDefinition
public class RelationshipDefinitionImpl extends Object implements RelationshipDefinition
Relationship definition implementation- Since:
- 2.3
- Author:
- Tuna Aksoy
-
-
Constructor Summary
Constructors Constructor Description RelationshipDefinitionImpl(String uniqueName, RelationshipType type, RelationshipDisplayName displayName)
Constructor for creating a relationship definition
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RelationshipDisplayName
getDisplayName()
Gets the display name of the relationship definitionRelationshipType
getType()
Gets the type of the relationship definitionString
getUniqueName()
Gets the unique name of the relationship definition
-
-
-
Constructor Detail
-
RelationshipDefinitionImpl
public RelationshipDefinitionImpl(String uniqueName, RelationshipType type, RelationshipDisplayName displayName)
Constructor for creating a relationship definition- Parameters:
uniqueName
- The unique name of the relationship definitiontype
- The type of the relationship definitiondisplayName
- The display name of the relationship definition
-
-
Method Detail
-
getUniqueName
public String getUniqueName()
Description copied from interface:RelationshipDefinition
Gets the unique name of the relationship definition- Specified by:
getUniqueName
in interfaceRelationshipDefinition
- Returns:
- The unique name of the relationship definition
- See Also:
RelationshipDefinition.getUniqueName()
-
getType
public RelationshipType getType()
Description copied from interface:RelationshipDefinition
Gets the type of the relationship definition- Specified by:
getType
in interfaceRelationshipDefinition
- Returns:
- The type of the relationship definition
- See Also:
RelationshipDefinition.getType()
-
getDisplayName
public RelationshipDisplayName getDisplayName()
Description copied from interface:RelationshipDefinition
Gets the display name of the relationship definition- Specified by:
getDisplayName
in interfaceRelationshipDefinition
- Returns:
- The display name of the relationship definition
- See Also:
RelationshipDefinition.getDisplayName()
-
-