Interface UserProperty
-
- All Superinterfaces:
Property
,SyncopeProperty<UserCompleteCondition>
- All Known Implementing Classes:
UserFiqlSearchConditionBuilder.Builder
public interface UserProperty extends SyncopeProperty<UserCompleteCondition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserCompleteCondition
inGroups(String group, String... moreGroups)
UserCompleteCondition
inRelationships(String anyObject, String... moreAnyObjects)
UserCompleteCondition
inRelationshipTypes(String type, String... moreTypes)
UserCompleteCondition
inRoles(String role, String... moreRoles)
UserCompleteCondition
notInGroups(String group, String... moreGroups)
UserCompleteCondition
notInRelationships(String anyObject, String... moreAnyObjects)
UserCompleteCondition
notInRelationshipTypes(String type, String... moreTypes)
UserCompleteCondition
notInRoles(String role, String... moreRoles)
UserCompleteCondition
withoutPrivileges(String privilege, String... morePrivileges)
UserCompleteCondition
withPrivileges(String privilege, String... morePrivileges)
-
Methods inherited from interface org.apache.cxf.jaxrs.ext.search.client.Property
after, after, before, before, comparesTo, comparesTo, comparesTo, comparesTo, comparesTo, comparesTo, equalTo, equalTo, equalTo, equalTo, equalTo, equalTo, greaterOrEqualTo, greaterOrEqualTo, greaterOrEqualTo, greaterThan, greaterThan, greaterThan, lessOrEqualTo, lessOrEqualTo, lessOrEqualTo, lessThan, lessThan, lessThan, lexicalAfter, lexicalBefore, lexicalNotAfter, lexicalNotBefore, notAfter, notAfter, notBefore, notBefore, notEqualTo, notEqualTo, notEqualTo, notEqualTo, notEqualTo, notEqualTo
-
Methods inherited from interface org.apache.syncope.common.lib.search.SyncopeProperty
equalToIgnoreCase, hasAuxClasses, hasNotAuxClasses, hasNotResources, hasResources, inDynRealms, notEqualTolIgnoreCase, notInDynRealms, notNullValue, nullValue
-
-
-
-
Method Detail
-
inGroups
UserCompleteCondition inGroups(String group, String... moreGroups)
-
notInGroups
UserCompleteCondition notInGroups(String group, String... moreGroups)
-
inRelationships
UserCompleteCondition inRelationships(String anyObject, String... moreAnyObjects)
-
notInRelationships
UserCompleteCondition notInRelationships(String anyObject, String... moreAnyObjects)
-
inRelationshipTypes
UserCompleteCondition inRelationshipTypes(String type, String... moreTypes)
-
notInRelationshipTypes
UserCompleteCondition notInRelationshipTypes(String type, String... moreTypes)
-
inRoles
UserCompleteCondition inRoles(String role, String... moreRoles)
-
notInRoles
UserCompleteCondition notInRoles(String role, String... moreRoles)
-
withPrivileges
UserCompleteCondition withPrivileges(String privilege, String... morePrivileges)
-
withoutPrivileges
UserCompleteCondition withoutPrivileges(String privilege, String... morePrivileges)
-
-