Uses of Class
de.captaingoldfish.scim.sdk.client.builder.ListBuilder
-
Packages that use ListBuilder Package Description de.captaingoldfish.scim.sdk.client de.captaingoldfish.scim.sdk.client.builder -
-
Uses of ListBuilder in de.captaingoldfish.scim.sdk.client
Methods in de.captaingoldfish.scim.sdk.client that return ListBuilder Modifier and Type Method Description <T extends ResourceNode>
ListBuilder<T>ScimRequestBuilder. list(Class<T> type, String endpoint)builds an update builder class based on the given type<T extends ResourceNode>
ListBuilder<T>ScimRequestBuilder. list(String fullyQualifiedUrl, Class<T> type)builds an update builder class based on the given type -
Uses of ListBuilder in de.captaingoldfish.scim.sdk.client.builder
Methods in de.captaingoldfish.scim.sdk.client.builder that return ListBuilder Modifier and Type Method Description ListBuilder<T>ListBuilder. attributes(String... attributeNames)adds the attributes that should be returned by the service providerListBuilder<T>ListBuilder.FilterBuilder. build()builds the filter string and puts it into the parameter map of the list builder instanceListBuilder<T>ListBuilder. count(int count)sets the count parameter for the maximum number of entries that should be returnedListBuilder<T>ListBuilder. custom(String attributeName, String attribute)adds additional custom parameters to the request that are unknown by the SCIM specificationListBuilder<T>ListBuilder. excludedAttributes(String... attributeNames)adds the excluded attributes that should not be returned by the service providerListBuilder<T>ListBuilder. filter(String filter)sets the given filter as attributeListBuilder<T>ListBuilder. sortBy(String sortBy)sets the attribute name that should be used for sorting the entriesListBuilder<T>ListBuilder. sortOrder(SortOrder sortOrder)sets the sorting order of the resourcesListBuilder<T>ListBuilder. startIndex(long startIndex)sets the startIndex parameter for the first entry that should be returnedConstructors in de.captaingoldfish.scim.sdk.client.builder with parameters of type ListBuilder Constructor Description FilterBuilder(ListBuilder<T> listBuilder, String attributeName, Comparator comparator, String value, boolean openParenthesis)GetRequestBuilder(ListBuilder<T> listBuilder)PostRequestBuilder(ListBuilder<T> listBuilder)
-