|
gluu
|

公開メンバ関数 | |
| SearchRequest () | |
| List< String > | getSchemas () |
| void | setSchemas (List< String > schemas) |
| List< String > | getAttributes () |
| void | setAttributes (List< String > attributes) |
| void | setAttributes (String commaSeparatedString) |
| List< String > | getExcludedAttributes () |
| void | setExcludedAttributes (List< String > excludedAttributes) |
| void | setExcludedAttributes (String commaSeparatedString) |
| String | getFilter () |
| void | setFilter (String filter) |
| String | getSortBy () |
| void | setSortBy (String sortBy) |
| String | getSortOrder () |
| void | setSortOrder (String sortOrder) |
| Integer | getStartIndex () |
| void | setStartIndex (Integer startIndex) |
| Integer | getCount () |
| void | setCount (Integer count) |
| String | getAttributesStr () |
| String | getExcludedAttributesStr () |
非公開変数類 | |
| List< String > | schemas |
| List< String > | attributes |
| List< String > | excludedAttributes |
| String | filter |
| String | sortBy |
| String | sortOrder |
| Integer | startIndex |
| Integer | count |
| String | attributesStr |
| String | excludedAttributesStr |
This class represents the components of a search request that is employed when doing searches via POST. See section 3.4.3 RFC 7644.
|
inline |
Default no args constructor. It creates an instance of SearchRequest initializing schemas properly.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Specifies a list of strings indicating the names of the resource attributes to return in response to a search, overriding the set of attributes that would be returned by default.
| attributes | A List of Strings |
|
inline |
Specifies the names of the resource attributes to return in the response to a search, overriding the set of attributes that would be returned by default.
| commaSeparatedString | The attribute names in a comma-separated String |
|
inline |
Specifies the desired maximum number of query results per page the response must include.
| count | An Integer object |
|
inline |
Specifies a list of strings indicating the names of the resource attributes to be removed from the default set of attributes to return.
| excludedAttributes | A List of Strings |
|
inline |
Specifies the names of the resource attributes to be removed from the default set of attributes to return.
| commaSeparatedString | The attribute names in a comma-separated String |
|
inline |
A filter expression so that the search will return only those resources matching the expression. To learn more about SCIM filter expressions and operators, see section 3.4.2.2 of RFC 7644.
| filter | A valid filter |
|
inline |
|
inline |
Specifies the attribute whose value will be used to order the returned responses.
| sortBy | Attribute name path. Examples are: userName, name.givenName, emails.value. |
|
inline |
The order in which the sortBy parameter is applied. Allowed values are "ascending" and "descending", being "ascending" the default if unspecified.
| sortOrder | A string value |
|
inline |
Sets the 1-based index of the first query result.
| startIndex | Specifies "where" the result set will start when the search is performed |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
1.8.13