Record Class RecentActivityEvent
java.lang.Object
java.lang.Record
org.graylog.plugins.views.startpage.recentActivities.RecentActivityEvent
public record RecentActivityEvent(ActivityType activityType, GRN grn, String itemTitle, String userName)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionRecentActivityEvent(ActivityType activityType, GRN grn, String userName) RecentActivityEvent(ActivityType activityType, GRN grn, String itemTitle, String userName) Creates an instance of aRecentActivityEventrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theactivityTyperecord component.final booleanIndicates whether some other object is "equal to" this one.grn()Returns the value of thegrnrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of theitemTitlerecord component.final StringtoString()Returns a string representation of this record class.userName()Returns the value of theuserNamerecord component.
-
Constructor Details
-
RecentActivityEvent
-
RecentActivityEvent
Creates an instance of aRecentActivityEventrecord class.- Parameters:
activityType- the value for theactivityTyperecord componentgrn- the value for thegrnrecord componentitemTitle- the value for theitemTitlerecord componentuserName- the value for theuserNamerecord 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). -
activityType
Returns the value of theactivityTyperecord component.- Returns:
- the value of the
activityTyperecord component
-
grn
Returns the value of thegrnrecord component.- Returns:
- the value of the
grnrecord component
-
itemTitle
Returns the value of theitemTitlerecord component.- Returns:
- the value of the
itemTitlerecord component
-
userName
Returns the value of theuserNamerecord component.- Returns:
- the value of the
userNamerecord component
-