Record Class SystemReadyStatus.Result
java.lang.Object
java.lang.Record
io.wcm.tooling.commons.packmgr.httpaction.SystemReadyStatus.Result
- Record Components:
name- namestatus- statustimeInMs- time in msfinishedAt- finished at- tagsmessages- messages
- Enclosing class:
SystemReadyStatus
public static record SystemReadyStatus.Result(String name, String status, long timeInMs, String finishedAt, List<String> tags, List<SystemReadyStatus.Message> messages)
extends Record
Represents a single health check result.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of thefinishedAtrecord component.final inthashCode()Returns a hash code value for this object.messages()Returns the value of themessagesrecord component.name()Returns the value of thenamerecord component.status()Returns the value of thestatusrecord component.tags()Returns the value of thetagsrecord component.longtimeInMs()Returns the value of thetimeInMsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Result
public Result(String name, String status, long timeInMs, String finishedAt, List<String> tags, List<SystemReadyStatus.Message> messages) Creates an instance of aResultrecord class.- Parameters:
name- the value for thenamerecord componentstatus- the value for thestatusrecord componenttimeInMs- the value for thetimeInMsrecord componentfinishedAt- the value for thefinishedAtrecord componenttags- the value for thetagsrecord componentmessages- the value for themessagesrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
status
Returns the value of thestatusrecord component.- Returns:
- the value of the
statusrecord component
-
timeInMs
public long timeInMs()Returns the value of thetimeInMsrecord component.- Returns:
- the value of the
timeInMsrecord component
-
finishedAt
Returns the value of thefinishedAtrecord component.- Returns:
- the value of the
finishedAtrecord component
-
tags
Returns the value of thetagsrecord component.- Returns:
- the value of the
tagsrecord component
-
messages
Returns the value of themessagesrecord component.- Returns:
- the value of the
messagesrecord component
-