Class AssetProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.devops.properties.ReferenceableProperties
-
- org.odpi.openmetadata.accessservices.devops.properties.ConfigurationItemProperties
-
- org.odpi.openmetadata.accessservices.devops.properties.AssetProperties
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AssetRequestBody,ITInfrastructureProperties
public class AssetProperties extends ConfigurationItemProperties
AssetProperties is a java bean used to create assets associated with the IT landscape.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AssetProperties()Default constructorAssetProperties(AssetProperties template)Copy/clone constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AssetPropertiescloneToAsset(String subTypeName)Convert this object into an AssetProperties object.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 asset.StringgetName()Returns the stored display name property for the asset.StringgetVersionIdentifier()Set up the version identifier of the resource.inthashCode()Return hash code based on properties.voidsetDescription(String description)Set up the stored description property associated with the asset.voidsetName(String name)Set up the stored display name property for the asset.voidsetVersionIdentifier(String versionIdentifier)Set up the version identifier of the resource.StringtoString()Standard toString method.-
Methods inherited from class org.odpi.openmetadata.accessservices.devops.properties.ConfigurationItemProperties
getEffectiveFrom, getEffectiveTo, setEffectiveFrom, setEffectiveTo
-
Methods inherited from class org.odpi.openmetadata.accessservices.devops.properties.ReferenceableProperties
getAdditionalProperties, getExtendedProperties, getQualifiedName, getTypeName, getVendorProperties, setAdditionalProperties, setExtendedProperties, setQualifiedName, setTypeName, setVendorProperties
-
-
-
-
Constructor Detail
-
AssetProperties
public AssetProperties()
Default constructor
-
AssetProperties
public AssetProperties(AssetProperties template)
Copy/clone constructor. Note, this is a deep copy- Parameters:
template- object to copy
-
-
Method Detail
-
cloneToAsset
public AssetProperties cloneToAsset(String subTypeName)
Convert this object into an AssetProperties object. This involves packing the properties introduced at this level into the extended properties.- Parameters:
subTypeName- subtype name- Returns:
- asset properties
-
getName
public String getName()
Returns the stored display name property for the asset. If no display name is available then null is returned.- Returns:
- String name
-
setName
public void setName(String name)
Set up the stored display name property for the asset.- Parameters:
name- String name
-
getVersionIdentifier
public String getVersionIdentifier()
Set up the version identifier of the resource.- Returns:
- string version name
-
setVersionIdentifier
public void setVersionIdentifier(String versionIdentifier)
Set up the version identifier of the resource.- Parameters:
versionIdentifier- string version name
-
getDescription
public String getDescription()
Returns the stored description property for the asset. 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 asset.- Parameters:
description- String text
-
toString
public String toString()
Standard toString method.- Overrides:
toStringin classConfigurationItemProperties- 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 classConfigurationItemProperties- Parameters:
objectToCompare- supplied object- Returns:
- boolean result of comparison
-
hashCode
public int hashCode()
Return hash code based on properties.- Overrides:
hashCodein classConfigurationItemProperties- Returns:
- int
-
-