Class RegisteredOMAGService
- java.lang.Object
-
- org.odpi.openmetadata.commonservices.ffdc.rest.RegisteredOMAGService
-
- All Implemented Interfaces:
Serializable
public class RegisteredOMAGService extends Object implements Serializable
RegisteredOMAGServicesResponse provides an object for returning information about a service that is registered with an OMAG Server Platform.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RegisteredOMAGService()Default constructorRegisteredOMAGService(RegisteredOMAGService 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.StringgetServiceDescription()Return the default description for this service.ComponentDevelopmentStatusgetServiceDevelopmentStatus()Return the development status of the service.intgetServiceId()Return the component identifier used by the serviceStringgetServiceName()Return the default name for this service.StringgetServiceURLMarker()Return the string that appears in the REST API URL that identifies the owning service.StringgetServiceWiki()Return the URL for the wiki page describing this service.inthashCode()Return hash code for this objectvoidsetServiceDescription(String serviceDescription)Set up the default description for this service.voidsetServiceDevelopmentStatus(ComponentDevelopmentStatus serviceDevelopmentStatus)Set up the development status of the service.voidsetServiceId(int serviceId)Set up the component identifier used by the service.voidsetServiceName(String serviceName)Set up the default name for this service.voidsetServiceURLMarker(String serviceURLMarker)Set up the string that appears in the REST API URL that identifies the owning service.voidsetServiceWiki(String serviceWiki)Set up the URL for the wiki page describing this service.StringtoString()JSON-style toString
-
-
-
Constructor Detail
-
RegisteredOMAGService
public RegisteredOMAGService()
Default constructor
-
RegisteredOMAGService
public RegisteredOMAGService(RegisteredOMAGService template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getServiceId
public int getServiceId()
Return the component identifier used by the service- Returns:
- int
-
setServiceId
public void setServiceId(int serviceId)
Set up the component identifier used by the service.- Parameters:
serviceId- int
-
getServiceName
public String getServiceName()
Return the default name for this service.- Returns:
- String default name
-
setServiceName
public void setServiceName(String serviceName)
Set up the default name for this service.- Parameters:
serviceName- name
-
getServiceDevelopmentStatus
public ComponentDevelopmentStatus getServiceDevelopmentStatus()
Return the development status of the service.- Returns:
- development status enum
-
setServiceDevelopmentStatus
public void setServiceDevelopmentStatus(ComponentDevelopmentStatus serviceDevelopmentStatus)
Set up the development status of the service.- Parameters:
serviceDevelopmentStatus- development status
-
getServiceURLMarker
public String getServiceURLMarker()
Return the string that appears in the REST API URL that identifies the owning service. Null means no REST APIs supported by this service.- Returns:
- url fragment
-
setServiceURLMarker
public void setServiceURLMarker(String serviceURLMarker)
Set up the string that appears in the REST API URL that identifies the owning service. Null means no REST APIs supported by this service.- Parameters:
serviceURLMarker- url fragment
-
getServiceDescription
public String getServiceDescription()
Return the default description for this service.- Returns:
- String default description
-
setServiceDescription
public void setServiceDescription(String serviceDescription)
Set up the default description for this service.- Parameters:
serviceDescription- text
-
getServiceWiki
public String getServiceWiki()
Return the URL for the wiki page describing this service.- Returns:
- String URL name for the wiki page
-
setServiceWiki
public void setServiceWiki(String serviceWiki)
Set up the URL for the wiki page describing this service.- Parameters:
serviceWiki- URL
-
toString
public String toString()
JSON-style toString
-
equals
public boolean equals(Object objectToCompare)
Return comparison result based on the content of the properties.
-
-