Class TemplateProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.securitymanager.properties.TemplateProperties
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
TemplateRequestBody
public class TemplateProperties extends Object implements Serializable
TemplateProperties defined the properties that can be overridden from the template object when creating an object from a template.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TemplateProperties()Default constructorTemplateProperties(TemplateProperties template)Copy/clone constructor for the template properties.
-
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.StringgetDescription()Returns the stored description property for the metadata entity.StringgetDisplayName()Returns the stored display name property for the metadata entity.StringgetNetworkAddress()Return the physical network address of this metadata element (if this makes sense).StringgetQualifiedName()Returns the stored qualified name property for the metadata entity.inthashCode()Return hash code based on properties.voidsetDescription(String description)Set up the stored description property associated with the metadata entity.voidsetDisplayName(String displayName)Set up the stored display name property for the metadata entity.voidsetNetworkAddress(String networkAddress)Set up the physical network address of this metadata element (if this makes sense).voidsetQualifiedName(String qualifiedName)Set up the fully qualified name.StringtoString()Standard toString method.
-
-
-
Constructor Detail
-
TemplateProperties
public TemplateProperties()
Default constructor
-
TemplateProperties
public TemplateProperties(TemplateProperties template)
Copy/clone constructor for the template properties.- Parameters:
template- template object to copy.
-
-
Method Detail
-
getQualifiedName
public String getQualifiedName()
Returns the stored qualified name property for the metadata entity. If no qualified name is available then the empty string is returned.- Returns:
- qualifiedName
-
setQualifiedName
public void setQualifiedName(String qualifiedName)
Set up the fully qualified name.- Parameters:
qualifiedName- String name
-
getDisplayName
public String getDisplayName()
Returns the stored display name property for the metadata entity. If no display name is available then null is returned.- Returns:
- String name
-
setDisplayName
public void setDisplayName(String displayName)
Set up the stored display name property for the metadata entity.- Parameters:
displayName- String name
-
getDescription
public String getDescription()
Returns the stored description property for the metadata entity. If no description is provided then null is returned.- Returns:
- description String text
-
setDescription
public void setDescription(String description)
Set up the stored description property associated with the metadata entity.- Parameters:
description- String text
-
getNetworkAddress
public String getNetworkAddress()
Return the physical network address of this metadata element (if this makes sense).- Returns:
- string name
-
setNetworkAddress
public void setNetworkAddress(String networkAddress)
Set up the physical network address of this metadata element (if this makes sense).- Parameters:
networkAddress- string name
-
toString
public String toString()
Standard toString method.
-
equals
public boolean equals(Object objectToCompare)
Compare the values of the supplied object with those stored in the current object.
-
-