Package com.avoka.tm.vo.v1
Record Class GroovyLog
java.lang.Object
java.lang.Record
com.avoka.tm.vo.v1.GroovyLog
- Record Components:
duration
- durationservice
- serviceserviceType
- service typesessionID
- session idstartTime
- start timestatus
- statusthread
- thread
public record GroovyLog(Integer duration, String service, String serviceType, String sessionID, Date startTime, String status, String thread)
extends Record
GroovyLog Object Model
- Since:
- 24.10.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionduration()
Returns the value of theduration
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.service()
Returns the value of theservice
record component.Returns the value of theserviceType
record component.Returns the value of thesessionID
record component.Returns the value of thestartTime
record component.status()
Returns the value of thestatus
record component.thread()
Returns the value of thethread
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
GroovyLog
public GroovyLog(com.avoka.fc.core.entity.GroovyServiceLog groovyServiceLog) -
GroovyLog
public GroovyLog(Integer duration, String service, String serviceType, String sessionID, Date startTime, String status, String thread) Creates an instance of aGroovyLog
record class.- Parameters:
duration
- the value for theduration
record componentservice
- the value for theservice
record componentserviceType
- the value for theserviceType
record componentsessionID
- the value for thesessionID
record componentstartTime
- the value for thestartTime
record componentstatus
- the value for thestatus
record componentthread
- the value for thethread
record 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. All components in this record class are compared withObjects::equals(Object,Object)
. -
duration
Returns the value of theduration
record component.- Returns:
- the value of the
duration
record component
-
service
Returns the value of theservice
record component.- Returns:
- the value of the
service
record component
-
serviceType
Returns the value of theserviceType
record component.- Returns:
- the value of the
serviceType
record component
-
sessionID
Returns the value of thesessionID
record component.- Returns:
- the value of the
sessionID
record component
-
startTime
Returns the value of thestartTime
record component.- Returns:
- the value of the
startTime
record component
-
status
Returns the value of thestatus
record component.- Returns:
- the value of the
status
record component
-
thread
Returns the value of thethread
record component.- Returns:
- the value of the
thread
record component
-