Class ViewServiceRequestBody
- java.lang.Object
-
- org.odpi.openmetadata.adminservices.configuration.properties.AdminServicesConfigHeader
-
- org.odpi.openmetadata.adminservices.configuration.properties.OMAGServerClientConfig
-
- org.odpi.openmetadata.adminservices.rest.ViewServiceRequestBody
-
- All Implemented Interfaces:
Serializable
public class ViewServiceRequestBody extends OMAGServerClientConfig
ViewServiceRequestBody passes the minimum information to set up an view server.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ViewServiceRequestBody()Default constructor for use with Jackson librariesViewServiceRequestBody(ViewServiceRequestBody template)Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Validate that an object is equal depending on their stored values.Map<String,Object>getViewServiceOptions()Return the options for this view service.inthashCode()Return a hash code based on the values of this object.voidsetViewServiceOptions(Map<String,Object> viewServiceOptions)Set up the options for this view service.StringtoString()Standard toString method.-
Methods inherited from class org.odpi.openmetadata.adminservices.configuration.properties.OMAGServerClientConfig
getOMAGServerName, getOMAGServerPlatformRootURL, setOMAGServerName, setOMAGServerPlatformRootURL
-
-
-
-
Constructor Detail
-
ViewServiceRequestBody
public ViewServiceRequestBody()
Default constructor for use with Jackson libraries
-
ViewServiceRequestBody
public ViewServiceRequestBody(ViewServiceRequestBody template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getViewServiceOptions
public Map<String,Object> getViewServiceOptions()
Return the options for this view service. These are properties that are specific to the view service.- Returns:
- Map from String to String
-
setViewServiceOptions
public void setViewServiceOptions(Map<String,Object> viewServiceOptions)
Set up the options for this view service. These are properties that are specific to the view service.- Parameters:
viewServiceOptions- Map from String to String
-
toString
public String toString()
Standard toString method.- Overrides:
toStringin classOMAGServerClientConfig- Returns:
- JSON style description of variables.
-
equals
public boolean equals(Object objectToCompare)
Validate that an object is equal depending on their stored values.- Overrides:
equalsin classOMAGServerClientConfig- Parameters:
objectToCompare- object- Returns:
- boolean result
-
hashCode
public int hashCode()
Return a hash code based on the values of this object.- Overrides:
hashCodein classOMAGServerClientConfig- Returns:
- in hash code
-
-