Class ExternalGlossaryElementLinkProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.assetmanager.properties.RelationshipProperties
-
- org.odpi.openmetadata.accessservices.assetmanager.properties.ExternalGlossaryElementLinkProperties
-
- All Implemented Interfaces:
Serializable
public class ExternalGlossaryElementLinkProperties extends RelationshipProperties
ExternalGlossaryLinkProperties describes the properties of URL link to a remote glossary.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExternalGlossaryElementLinkProperties()Default constructorExternalGlossaryElementLinkProperties(ExternalGlossaryElementLinkProperties template)Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Compare the values of the supplied object with those stored in the current object.StringgetElementDescription()Return a description of the association between the category and the external element from the external glossary resource.StringgetElementIdentifier()Return the identifier in the external glossary resource that is equivalent to this element.DategetLastVerified()Return the date that a steward verified the link.StringgetSteward()Return the identifier for the steward that created the link.inthashCode()Return has code based on properties.voidsetElementDescription(String description)Set up a description of the association between the category and the external element from the external glossary resource.voidsetElementIdentifier(String elementIdentifier)Set up the identifier in the external glossary resource that is equivalent to this element.voidsetLastVerified(Date lastVerified)Set up the date that a steward verified the link.voidsetSteward(String steward)Set up the identifier for the steward that created the link.StringtoString()Standard toString method.-
Methods inherited from class org.odpi.openmetadata.accessservices.assetmanager.properties.RelationshipProperties
getEffectiveFrom, getEffectiveTo, setEffectiveFrom, setEffectiveTo
-
-
-
-
Constructor Detail
-
ExternalGlossaryElementLinkProperties
public ExternalGlossaryElementLinkProperties()
Default constructor
-
ExternalGlossaryElementLinkProperties
public ExternalGlossaryElementLinkProperties(ExternalGlossaryElementLinkProperties template)
Copy/clone constructor- Parameters:
template- template object to copy.
-
-
Method Detail
-
getElementIdentifier
public String getElementIdentifier()
Return the identifier in the external glossary resource that is equivalent to this element.- Returns:
- string elementIdentifier
-
setElementIdentifier
public void setElementIdentifier(String elementIdentifier)
Set up the identifier in the external glossary resource that is equivalent to this element.- Parameters:
elementIdentifier- string
-
getElementDescription
public String getElementDescription()
Return a description of the association between the category and the external element from the external glossary resource.- Returns:
- string text
-
setElementDescription
public void setElementDescription(String description)
Set up a description of the association between the category and the external element from the external glossary resource.- Parameters:
description- string text
-
getSteward
public String getSteward()
Return the identifier for the steward that created the link.- Returns:
- string identifier
-
setSteward
public void setSteward(String steward)
Set up the identifier for the steward that created the link.- Parameters:
steward- string identifier
-
getLastVerified
public Date getLastVerified()
Return the date that a steward verified the link.- Returns:
- date/time
-
setLastVerified
public void setLastVerified(Date lastVerified)
Set up the date that a steward verified the link.- Parameters:
lastVerified- date/time
-
toString
public String toString()
Standard toString method.- Overrides:
toStringin classRelationshipProperties- Returns:
- print out of variables in a JSON-style
-
equals
public boolean equals(Object objectToCompare)
Compare the values of the supplied object with those stored in the current object.- Overrides:
equalsin classRelationshipProperties- Parameters:
objectToCompare- supplied object- Returns:
- boolean result of comparison
-
hashCode
public int hashCode()
Return has code based on properties.- Overrides:
hashCodein classRelationshipProperties- Returns:
- int
-
-