Package com.io7m.idstore.model
Record Class IdUserSearchParameters
java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdUserSearchParameters
- Record Components:
timeCreatedRange- Only users created within this time range are returnedtimeUpdatedRange- Only users updated within this time range are returnedsearch- The search queryordering- The ordering specificationlimit- The limit on the number of returned users
public record IdUserSearchParameters(IdTimeRange timeCreatedRange, IdTimeRange timeUpdatedRange, Optional<String> search, IdUserColumnOrdering ordering, int limit)
extends Record
The immutable parameters required to search users.
-
Constructor Summary
ConstructorsConstructorDescriptionIdUserSearchParameters(IdTimeRange timeCreatedRange, IdTimeRange timeUpdatedRange, Optional<String> search, IdUserColumnOrdering ordering, int limit) The immutable parameters required to list users. -
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
-
IdUserSearchParameters
public IdUserSearchParameters(IdTimeRange timeCreatedRange, IdTimeRange timeUpdatedRange, Optional<String> search, IdUserColumnOrdering ordering, int limit) The immutable parameters required to list users.- Parameters:
timeCreatedRange- Only users created within this time range are returnedtimeUpdatedRange- Only users updated within this time range are returnedsearch- The search queryordering- The ordering specificationlimit- The limit on the number of returned users
-
-
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
-