Class ServerStatusResponse
- java.lang.Object
-
- org.odpi.openmetadata.commonservices.ffdc.rest.FFDCResponseBase
-
- org.odpi.openmetadata.platformservices.rest.ServerStatusResponse
-
- All Implemented Interfaces:
Serializable,FFDCResponse
public class ServerStatusResponse extends FFDCResponseBase
ServerListResponse returns the list of servers running in a platform.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServerStatusResponse()Default constructorServerStatusResponse(ServerStatusResponse 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.DategetServerEndTime()Return the time that the server last ended - it is null if the server is currently active.List<OMAGServerInstanceHistory>getServerHistory()Return the list of start and stop times for the previous restarts of the server.StringgetServerName()Return the name of the server where the services are running.DategetServerStartTime()Return the time that the server last started.StringgetServerType()Return the type of server that is hosting these services.inthashCode()Return hash code for this objectbooleanisActive()Is the server instance currently running?voidsetActive(boolean active)Set up whether the server is currently running.voidsetServerEndTime(Date serverEndTime)Set up the time that the server last ended - it is null if the server is currently active.voidsetServerHistory(List<OMAGServerInstanceHistory> serverHistory)Set up the list of start and stop times for the previous restarts of the server.voidsetServerName(String serverName)Set up the name of the server where the services are running.voidsetServerStartTime(Date serverStartTime)Set up the time that the server last started.voidsetServerType(String serverType)Set up the type of server that is hosting these services.StringtoString()JSON-like toString-
Methods inherited from class org.odpi.openmetadata.commonservices.ffdc.rest.FFDCResponseBase
getActionDescription, getExceptionCausedBy, getExceptionClassName, getExceptionErrorMessage, getExceptionErrorMessageId, getExceptionErrorMessageParameters, getExceptionProperties, getExceptionSystemAction, getExceptionUserAction, getRelatedHTTPCode, setActionDescription, setExceptionCausedBy, setExceptionClassName, setExceptionErrorMessage, setExceptionErrorMessageId, setExceptionErrorMessageParameters, setExceptionProperties, setExceptionSystemAction, setExceptionUserAction, setRelatedHTTPCode
-
-
-
-
Constructor Detail
-
ServerStatusResponse
public ServerStatusResponse()
Default constructor
-
ServerStatusResponse
public ServerStatusResponse(ServerStatusResponse template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getServerName
public String getServerName()
Return the name of the server where the services are running.- Returns:
- name of server * @return name of server
-
setServerName
public void setServerName(String serverName)
Set up the name of the server where the services are running.- Parameters:
serverName- name of server
-
getServerType
public String getServerType()
Return the type of server that is hosting these services.- Returns:
- string name
-
setServerType
public void setServerType(String serverType)
Set up the type of server that is hosting these services.- Parameters:
serverType- string name
-
isActive
public boolean isActive()
Is the server instance currently running?- Returns:
- boolean
-
setActive
public void setActive(boolean active)
Set up whether the server is currently running.- Parameters:
active- boolean
-
getServerStartTime
public Date getServerStartTime()
Return the time that the server last started.- Returns:
- date/time
-
setServerStartTime
public void setServerStartTime(Date serverStartTime)
Set up the time that the server last started.- Parameters:
serverStartTime- date/time
-
getServerEndTime
public Date getServerEndTime()
Return the time that the server last ended - it is null if the server is currently active.- Returns:
- date/time or null
-
setServerEndTime
public void setServerEndTime(Date serverEndTime)
Set up the time that the server last ended - it is null if the server is currently active.- Parameters:
serverEndTime- date/time
-
getServerHistory
public List<OMAGServerInstanceHistory> getServerHistory()
Return the list of start and stop times for the previous restarts of the server.- Returns:
- server history
-
setServerHistory
public void setServerHistory(List<OMAGServerInstanceHistory> serverHistory)
Set up the list of start and stop times for the previous restarts of the server.- Parameters:
serverHistory- server history
-
toString
public String toString()
JSON-like toString- Overrides:
toStringin classFFDCResponseBase- Returns:
- 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 classFFDCResponseBase- Parameters:
objectToCompare- test object- Returns:
- result of comparison
-
hashCode
public int hashCode()
Return hash code for this object- Overrides:
hashCodein classFFDCResponseBase- Returns:
- int hash code
-
-