Class ConnectionRequestBody
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.datamanager.properties.ReferenceableProperties
-
- org.odpi.openmetadata.accessservices.datamanager.properties.ConnectionProperties
-
- org.odpi.openmetadata.accessservices.datamanager.rest.ConnectionRequestBody
-
- All Implemented Interfaces:
Serializable
public class ConnectionRequestBody extends ConnectionProperties
ConnectionRequestBody carries the parameters for describing a connection. The external source identifiers are used if the connection was created using the external source identifiers.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConnectionRequestBody()Default constructorConnectionRequestBody(ConnectionProperties template)Copy/clone constructorConnectionRequestBody(ConnectionRequestBody template)Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Return comparison result based on the content of the properties.StringgetExternalSourceGUID()Return the unique identifier of the software server capability entity that represented the external source - null for local.StringgetExternalSourceName()Return the unique name of the software server capability entity that represented the external source.inthashCode()Return hash code for this objectvoidsetExternalSourceGUID(String externalSourceGUID)Set up the unique identifier of the software server capability entity that represented the external source - null for local.voidsetExternalSourceName(String externalSourceName)Set up the unique name of the software server capability entity that represented the external source.StringtoString()JSON-style toString-
Methods inherited from class org.odpi.openmetadata.accessservices.datamanager.properties.ConnectionProperties
getClearPassword, getConfigurationProperties, getDescription, getDisplayName, getEncryptedPassword, getSecuredProperties, getUserId, setClearPassword, setConfigurationProperties, setDescription, setDisplayName, setEncryptedPassword, setSecuredProperties, setUserId
-
Methods inherited from class org.odpi.openmetadata.accessservices.datamanager.properties.ReferenceableProperties
getAdditionalProperties, getExtendedProperties, getQualifiedName, getTypeName, getVendorProperties, setAdditionalProperties, setExtendedProperties, setQualifiedName, setTypeName, setVendorProperties
-
-
-
-
Constructor Detail
-
ConnectionRequestBody
public ConnectionRequestBody()
Default constructor
-
ConnectionRequestBody
public ConnectionRequestBody(ConnectionRequestBody template)
Copy/clone constructor- Parameters:
template- object to copy
-
ConnectionRequestBody
public ConnectionRequestBody(ConnectionProperties template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getExternalSourceGUID
public String getExternalSourceGUID()
Return the unique identifier of the software server capability entity that represented the external source - null for local.- Returns:
- string guid
-
setExternalSourceGUID
public void setExternalSourceGUID(String externalSourceGUID)
Set up the unique identifier of the software server capability entity that represented the external source - null for local.- Parameters:
externalSourceGUID- string guid
-
getExternalSourceName
public String getExternalSourceName()
Return the unique name of the software server capability entity that represented the external source.- Returns:
- string name
-
setExternalSourceName
public void setExternalSourceName(String externalSourceName)
Set up the unique name of the software server capability entity that represented the external source.- Parameters:
externalSourceName- string name
-
toString
public String toString()
JSON-style toString- Overrides:
toStringin classConnectionProperties- Returns:
- return string containing the property names and values
-
equals
public boolean equals(Object objectToCompare)
Return comparison result based on the content of the properties.- Overrides:
equalsin classConnectionProperties- Parameters:
objectToCompare- test object- Returns:
- result of comparison
-
hashCode
public int hashCode()
Return hash code for this object- Overrides:
hashCodein classConnectionProperties- Returns:
- int hash code
-
-