Class SoftwareCapabilitiesProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.datamanager.properties.ReferenceableProperties
-
- org.odpi.openmetadata.accessservices.datamanager.properties.SoftwareCapabilitiesProperties
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
APIManagerProperties
,ApplicationProperties
,DatabaseManagerProperties
,DataProcessingEngineProperties
,EventBrokerProperties
,FileManagerProperties
,FileSystemProperties
,SoftwareCapabilityRequestBody
public class SoftwareCapabilitiesProperties extends ReferenceableProperties
SoftwareCapabilitiesProperties describe the properties for a capability deployed to a software server.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SoftwareCapabilitiesProperties()
Default constructor.SoftwareCapabilitiesProperties(SoftwareCapabilitiesProperties template)
Copy/clone constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object objectToCompare)
Compare the values of the supplied object with those stored in the current object.java.lang.String
getDescription()
Return the description of the capability.java.lang.String
getDisplayName()
Return the display name for messages and UI.java.lang.String
getPatchLevel()
Return the patch level of the capability.java.lang.String
getSource()
Return the source of the capability implementation.java.lang.String
getTypeDescription()
Return the description of the type of capability this is.java.lang.String
getVersion()
Return the version of the capability.int
hashCode()
Create a hash code for this element type.void
setDescription(java.lang.String description)
Set up the description of the capability.void
setDisplayName(java.lang.String displayName)
Set up the display name for messages and UI.void
setPatchLevel(java.lang.String patchLevel)
Set up the patch level of the capability.void
setSource(java.lang.String source)
Set up the source of the capability implementation.void
setTypeDescription(java.lang.String typeDescription)
Set up the description of the type of capability this is.void
setVersion(java.lang.String version)
Set up the version string of the capability.java.lang.String
toString()
Standard toString method.-
Methods inherited from class org.odpi.openmetadata.accessservices.datamanager.properties.ReferenceableProperties
getAdditionalProperties, getEffectiveFrom, getEffectiveTo, getExtendedProperties, getQualifiedName, getTypeName, getVendorProperties, setAdditionalProperties, setEffectiveFrom, setEffectiveTo, setExtendedProperties, setQualifiedName, setTypeName, setVendorProperties
-
-
-
-
Constructor Detail
-
SoftwareCapabilitiesProperties
public SoftwareCapabilitiesProperties()
Default constructor.
-
SoftwareCapabilitiesProperties
public SoftwareCapabilitiesProperties(SoftwareCapabilitiesProperties template)
Copy/clone constructor.- Parameters:
template
- object to copy
-
-
Method Detail
-
getDisplayName
public java.lang.String getDisplayName()
Return the display name for messages and UI.- Returns:
- string name
-
setDisplayName
public void setDisplayName(java.lang.String displayName)
Set up the display name for messages and UI.- Parameters:
displayName
- string name
-
getDescription
public java.lang.String getDescription()
Return the description of the capability.- Returns:
- string description
-
setDescription
public void setDescription(java.lang.String description)
Set up the description of the capability.- Parameters:
description
- string
-
getTypeDescription
public java.lang.String getTypeDescription()
Return the description of the type of capability this is.- Returns:
- string description
-
setTypeDescription
public void setTypeDescription(java.lang.String typeDescription)
Set up the description of the type of capability this is.- Parameters:
typeDescription
- string
-
getVersion
public java.lang.String getVersion()
Return the version of the capability.- Returns:
- version string
-
setVersion
public void setVersion(java.lang.String version)
Set up the version string of the capability.- Parameters:
version
- string
-
getPatchLevel
public java.lang.String getPatchLevel()
Return the patch level of the capability.- Returns:
- patch level string
-
setPatchLevel
public void setPatchLevel(java.lang.String patchLevel)
Set up the patch level of the capability.- Parameters:
patchLevel
- string
-
getSource
public java.lang.String getSource()
Return the source of the capability implementation.- Returns:
- string url
-
setSource
public void setSource(java.lang.String source)
Set up the source of the capability implementation.- Parameters:
source
- string url
-
toString
public java.lang.String toString()
Standard toString method.- Overrides:
toString
in classReferenceableProperties
- Returns:
- print out of variables in a JSON-style
-
equals
public boolean equals(java.lang.Object objectToCompare)
Compare the values of the supplied object with those stored in the current object.- Overrides:
equals
in classReferenceableProperties
- Parameters:
objectToCompare
- supplied object- Returns:
- boolean result of comparison
-
hashCode
public int hashCode()
Create a hash code for this element type.- Overrides:
hashCode
in classReferenceableProperties
- Returns:
- int hash code
-
-