Package com.io7m.idstore.model
Record Class IdAdminSearchByEmailParameters
java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdAdminSearchByEmailParameters
- Record Components:
timeCreatedRange- Only admins created within this time range are returnedtimeUpdatedRange- Only admins updated within this time range are returnedsearch- The search queryordering- The ordering specificationlimit- The limit on the number of returned admins
public record IdAdminSearchByEmailParameters(IdTimeRange timeCreatedRange, IdTimeRange timeUpdatedRange, String search, IdAdminColumnOrdering ordering, int limit)
extends Record
The immutable parameters required to search admins.
-
Constructor Summary
ConstructorsConstructorDescriptionIdAdminSearchByEmailParameters(IdTimeRange timeCreatedRange, IdTimeRange timeUpdatedRange, String search, IdAdminColumnOrdering ordering, int limit) The immutable parameters required to list admins. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intlimit()Returns the value of thelimitrecord component.ordering()Returns the value of theorderingrecord component.search()Returns the value of thesearchrecord component.Returns the value of thetimeCreatedRangerecord component.Returns the value of thetimeUpdatedRangerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IdAdminSearchByEmailParameters
public IdAdminSearchByEmailParameters(IdTimeRange timeCreatedRange, IdTimeRange timeUpdatedRange, String search, IdAdminColumnOrdering ordering, int limit) The immutable parameters required to list admins.- Parameters:
timeCreatedRange- Only admins created within this time range are returnedtimeUpdatedRange- Only admins updated within this time range are returnedsearch- The search queryordering- The ordering specificationlimit- The limit on the number of returned admins
-
-
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 '=='. -
timeCreatedRange
Returns the value of thetimeCreatedRangerecord component.- Returns:
- the value of the
timeCreatedRangerecord component
-
timeUpdatedRange
Returns the value of thetimeUpdatedRangerecord component.- Returns:
- the value of the
timeUpdatedRangerecord component
-
search
Returns the value of thesearchrecord component.- Returns:
- the value of the
searchrecord component
-
ordering
Returns the value of theorderingrecord component.- Returns:
- the value of the
orderingrecord component
-
limit
public int limit()Returns the value of thelimitrecord component.- Returns:
- the value of the
limitrecord component
-