Class ResourceEndpointConfig
- java.lang.Object
-
- org.odpi.openmetadata.adminservices.configuration.properties.AdminServicesConfigHeader
-
- org.odpi.openmetadata.adminservices.configuration.properties.ResourceEndpointConfig
-
- All Implemented Interfaces:
java.io.Serializable
public class ResourceEndpointConfig extends AdminServicesConfigHeader
ResourceEndpointConfig defines the properties of a resource endpoint that an integration view service can connect to.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResourceEndpointConfig()
Default constructorResourceEndpointConfig(ResourceEndpointConfig 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
getDescription()
Return the description of resource.java.lang.String
getPlatformName()
Return the platformName of resource.java.lang.String
getPlatformRootURL()
Return the platformRootURL of resource.java.lang.String
getResourceCategory()
Return the category of resource - indicating whether the resource is a platform or server.java.lang.String
getServerInstanceName()
Return the serverInstanceName of resource.java.lang.String
getServerName()
Return the serverName of resource.int
hashCode()
Return a hash code based on the values of this object.void
setDescription(java.lang.String description)
Set the displayName of resource.void
setPlatformName(java.lang.String platformName)
Set the platformName of resource.void
setPlatformRootURL(java.lang.String platformRootURL)
Set the platformRootURL of resource.void
setResourceCategory(java.lang.String resourceCategory)
Set the category of resource - indicating whether the resource is a platform or server.void
setServerInstanceName(java.lang.String serverInstanceName)
Set the serverInstanceName of resource.void
setServerName(java.lang.String serverName)
Set the serverName of resource.java.lang.String
toString()
Standard toString method.
-
-
-
Constructor Detail
-
ResourceEndpointConfig
public ResourceEndpointConfig()
Default constructor
-
ResourceEndpointConfig
public ResourceEndpointConfig(ResourceEndpointConfig template)
Copy/clone constructor- Parameters:
template
- object to copy
-
-
Method Detail
-
getResourceCategory
public java.lang.String getResourceCategory()
Return the category of resource - indicating whether the resource is a platform or server.- Returns:
- resourceCategory
-
setResourceCategory
public void setResourceCategory(java.lang.String resourceCategory)
Set the category of resource - indicating whether the resource is a platform or server.- Parameters:
resourceCategory
- string value
-
getDescription
public java.lang.String getDescription()
Return the description of resource.- Returns:
- description
-
setDescription
public void setDescription(java.lang.String description)
Set the displayName of resource.- Parameters:
description
- string value
-
getPlatformRootURL
public java.lang.String getPlatformRootURL()
Return the platformRootURL of resource.- Returns:
- platformRootURL
-
setPlatformRootURL
public void setPlatformRootURL(java.lang.String platformRootURL)
Set the platformRootURL of resource.- Parameters:
platformRootURL
- string value
-
getServerName
public java.lang.String getServerName()
Return the serverName of resource.- Returns:
- serverName
-
setServerName
public void setServerName(java.lang.String serverName)
Set the serverName of resource.- Parameters:
serverName
- string value
-
getServerInstanceName
public java.lang.String getServerInstanceName()
Return the serverInstanceName of resource.- Returns:
- serverInstanceName
-
setServerInstanceName
public void setServerInstanceName(java.lang.String serverInstanceName)
Set the serverInstanceName of resource.- Parameters:
serverInstanceName
- string value
-
getPlatformName
public java.lang.String getPlatformName()
Return the platformName of resource.- Returns:
- platformName
-
setPlatformName
public void setPlatformName(java.lang.String platformName)
Set the platformName of resource.- Parameters:
platformName
- string value
-
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
-
-