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
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
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
-
ordering
-
limit
-