Record Class PluginAdminController.DebugInfo
java.lang.Object
java.lang.Record
ai.nervemind.app.api.admin.PluginAdminController.DebugInfo
- Enclosing class:
PluginAdminController
public static record PluginAdminController.DebugInfo(int providerCount, int triggerCount, int actionCount, long serverTime)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionDebugInfo(int providerCount, int triggerCount, int actionCount, long serverTime) Creates an instance of aDebugInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the value of theactionCountrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intReturns the value of theproviderCountrecord component.longReturns the value of theserverTimerecord component.final StringtoString()Returns a string representation of this record class.intReturns the value of thetriggerCountrecord component.
-
Constructor Details
-
DebugInfo
public DebugInfo(int providerCount, int triggerCount, int actionCount, long serverTime) Creates an instance of aDebugInforecord class.- Parameters:
providerCount- the value for theproviderCountrecord componenttriggerCount- the value for thetriggerCountrecord componentactionCount- the value for theactionCountrecord componentserverTime- the value for theserverTimerecord component
-
-
Method Details
-
toString
-
hashCode
-
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 with thecomparemethod from their corresponding wrapper classes. -
providerCount
public int providerCount()Returns the value of theproviderCountrecord component.- Returns:
- the value of the
providerCountrecord component
-
triggerCount
public int triggerCount()Returns the value of thetriggerCountrecord component.- Returns:
- the value of the
triggerCountrecord component
-
actionCount
public int actionCount()Returns the value of theactionCountrecord component.- Returns:
- the value of the
actionCountrecord component
-
serverTime
public long serverTime()Returns the value of theserverTimerecord component.- Returns:
- the value of the
serverTimerecord component
-