Class OMAGServerClientConfig
- java.lang.Object
-
- org.odpi.openmetadata.adminservices.configuration.properties.AdminServicesConfigHeader
-
- org.odpi.openmetadata.adminservices.configuration.properties.OMAGServerClientConfig
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
EngineHostServicesConfig
,EngineServiceConfig
,EngineServiceRequestBody
,IntegrationServiceConfig
,IntegrationServiceRequestBody
,ViewServiceConfig
,ViewServiceRequestBody
public class OMAGServerClientConfig extends AdminServicesConfigHeader
OMAGServerClientConfig provides the properties to configure a server that connects to an OMAG Server. This is typically used by a Governance or a View Server to retrieve metadata from a metadata server.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OMAGServerClientConfig()
Default constructorOMAGServerClientConfig(OMAGServerClientConfig template)
Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object objectToCompare)
Validate that an object is equal depending on their stored values.java.lang.String
getOMAGServerName()
Return the name of the OMAG server.java.lang.String
getOMAGServerPlatformRootURL()
Return the root URL of the OMAG ServerPlatform.int
hashCode()
Return a hash code based on the values of this object.void
setOMAGServerName(java.lang.String omagServerName)
Set up the name of the OMAG server.void
setOMAGServerPlatformRootURL(java.lang.String omagServerPlatformRootURL)
Set up the root URL of the OMAG Server Platform.java.lang.String
toString()
Standard toString method.
-
-
-
Constructor Detail
-
OMAGServerClientConfig
public OMAGServerClientConfig()
Default constructor
-
OMAGServerClientConfig
public OMAGServerClientConfig(OMAGServerClientConfig template)
Copy/clone constructor- Parameters:
template
- object to copy
-
-
Method Detail
-
getOMAGServerPlatformRootURL
public java.lang.String getOMAGServerPlatformRootURL()
Return the root URL of the OMAG ServerPlatform.- Returns:
- string root url
-
setOMAGServerPlatformRootURL
public void setOMAGServerPlatformRootURL(java.lang.String omagServerPlatformRootURL)
Set up the root URL of the OMAG Server Platform.- Parameters:
omagServerPlatformRootURL
- string root url
-
getOMAGServerName
public java.lang.String getOMAGServerName()
Return the name of the OMAG server.- Returns:
- string server name
-
setOMAGServerName
public void setOMAGServerName(java.lang.String omagServerName)
Set up the name of the OMAG server.- Parameters:
omagServerName
- string server name
-
toString
public java.lang.String toString()
Standard toString method.- Overrides:
toString
in classjava.lang.Object
- Returns:
- JSON style description of variables.
-
equals
public boolean equals(java.lang.Object objectToCompare)
Validate that an object is equal depending on their stored values.- Overrides:
equals
in classjava.lang.Object
- Parameters:
objectToCompare
- object- Returns:
- boolean result
-
hashCode
public int hashCode()
Return a hash code based on the values of this object.- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- in hash code
-
-