Record Class AuditSearchData
java.lang.Object
java.lang.Record
org.apache.fineract.commands.data.AuditSearchData
- All Implemented Interfaces:
Serializable
public record AuditSearchData(Collection<org.apache.fineract.useradministration.data.AppUserData> appUsers, List<String> actionNames, List<String> entityNames, Collection<ProcessingResultLookup> statuses)
extends Record
implements Serializable
Immutable data object representing audit search results.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAuditSearchData(Collection<org.apache.fineract.useradministration.data.AppUserData> appUsers, List<String> actionNames, List<String> entityNames, Collection<ProcessingResultLookup> statuses) Creates an instance of aAuditSearchDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theactionNamesrecord component.Collection<org.apache.fineract.useradministration.data.AppUserData> appUsers()Returns the value of theappUsersrecord component.Returns the value of theentityNamesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.statuses()Returns the value of thestatusesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AuditSearchData
public AuditSearchData(Collection<org.apache.fineract.useradministration.data.AppUserData> appUsers, List<String> actionNames, List<String> entityNames, Collection<ProcessingResultLookup> statuses) Creates an instance of aAuditSearchDatarecord class.- Parameters:
appUsers- the value for theappUsersrecord componentactionNames- the value for theactionNamesrecord componententityNames- the value for theentityNamesrecord componentstatuses- the value for thestatusesrecord 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). -
appUsers
Returns the value of theappUsersrecord component.- Returns:
- the value of the
appUsersrecord component
-
actionNames
Returns the value of theactionNamesrecord component.- Returns:
- the value of the
actionNamesrecord component
-
entityNames
Returns the value of theentityNamesrecord component.- Returns:
- the value of the
entityNamesrecord component
-
statuses
Returns the value of thestatusesrecord component.- Returns:
- the value of the
statusesrecord component
-