| Package | Description |
|---|---|
| org.craftercms.profile.api | |
| org.craftercms.profile.api.services |
| Modifier and Type | Method and Description |
|---|---|
static SortOrder |
SortOrder.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortOrder[] |
SortOrder.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
List<Profile> |
ProfileService.getProfileRange(String tenantName,
String sortBy,
SortOrder sortOrder,
Integer start,
Integer count,
String... attributesToReturn)
Returns a range of profiles for the specified tenant.
|
List<Profile> |
ProfileService.getProfilesByAttributeValue(String tenantName,
String attributeName,
String attributeValue,
String sortBy,
SortOrder sortOrder,
String... attributesToReturn)
Returns the list of profiles that have the given attribute with the given value.
|
List<Profile> |
ProfileService.getProfilesByExistingAttribute(String tenantName,
String attributeName,
String sortBy,
SortOrder sortOrder,
String... attributesToReturn)
Returns the list of profiles that have the given attribute, with any value
|
List<Profile> |
ProfileService.getProfilesByIds(List<String> profileIds,
String sortBy,
SortOrder sortOrder,
String... attributesToReturn)
Returns a list of profiles for the specified list of IDs.
|
List<Profile> |
ProfileService.getProfilesByQuery(String tenantName,
String query,
String sortBy,
SortOrder sortOrder,
Integer start,
Integer count,
String... attributesToReturn)
Returns the profiles that match the specified query.
|
List<Profile> |
ProfileService.getProfilesByRole(String tenantName,
String role,
String sortBy,
SortOrder sortOrder,
String... attributesToReturn)
Returns a list of profiles for a specific role and tenant.
|
Copyright © 2015 CrafterCMS. All Rights Reserved.