Package com.io7m.idstore.model
Record Class IdAdminSearchParameters
java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdAdminSearchParameters
- 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 IdAdminSearchParameters(IdTimeRange timeCreatedRange, IdTimeRange timeUpdatedRange, Optional<String> search, IdAdminColumnOrdering ordering, int limit)
extends Record
The immutable parameters required to search admins.
-
Constructor Summary
ConstructorsConstructorDescriptionIdAdminSearchParameters(IdTimeRange timeCreatedRange, IdTimeRange timeUpdatedRange, Optional<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
-
IdAdminSearchParameters
public IdAdminSearchParameters(IdTimeRange timeCreatedRange, IdTimeRange timeUpdatedRange, Optional<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
-
limit
-
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 '=='. -
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
-