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, IdUserOrdering ordering, int limit)
extends Record
The immutable parameters required to search users.
-
Constructor Summary
ConstructorsConstructorDescriptionIdUserSearchParameters(IdTimeRange timeCreatedRange, IdTimeRange timeUpdatedRange, Optional<String> search, IdUserOrdering ordering, int limit) The immutable parameters required to list users. -
Method Summary
Modifier and TypeMethodDescriptionstatic IdUserSearchParametersdefaults()final 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, IdUserOrdering 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
public int limit()Returns the value of thelimitrecord component.- Returns:
- the value of the
limitrecord component
-
defaults
- Returns:
- Reasonable default parameters
-
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
-