Interface WorkmanagerSecurityMappingsType<T>
-
- All Superinterfaces:
org.jboss.shrinkwrap.descriptor.api.Child<T>
- All Known Implementing Classes:
WorkmanagerSecurityMappingsTypeImpl
public interface WorkmanagerSecurityMappingsType<T> extends org.jboss.shrinkwrap.descriptor.api.Child<T>This interface defines the contract for theworkmanagerSecurityMappingsTypexsd type
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkmanagerSecurityMappingsGroupsType<WorkmanagerSecurityMappingsType<T>>getOrCreateGroups()If not already created, a newgroupselement with the given value will be created.WorkmanagerSecurityMappingsUsersType<WorkmanagerSecurityMappingsType<T>>getOrCreateUsers()If not already created, a newuserselement with the given value will be created.WorkmanagerSecurityMappingsType<T>removeGroups()Removes thegroupselementWorkmanagerSecurityMappingsType<T>removeUsers()Removes theuserselement
-
-
-
Method Detail
-
getOrCreateUsers
WorkmanagerSecurityMappingsUsersType<WorkmanagerSecurityMappingsType<T>> getOrCreateUsers()
If not already created, a newuserselement with the given value will be created. Otherwise, the existinguserselement will be returned.- Returns:
- a new or existing instance of
WorkmanagerSecurityMappingsUsersType>
-
removeUsers
WorkmanagerSecurityMappingsType<T> removeUsers()
Removes theuserselement- Returns:
- the current instance of
WorkmanagerSecurityMappingsType
-
getOrCreateGroups
WorkmanagerSecurityMappingsGroupsType<WorkmanagerSecurityMappingsType<T>> getOrCreateGroups()
If not already created, a newgroupselement with the given value will be created. Otherwise, the existinggroupselement will be returned.- Returns:
- a new or existing instance of
WorkmanagerSecurityMappingsGroupsType>
-
removeGroups
WorkmanagerSecurityMappingsType<T> removeGroups()
Removes thegroupselement- Returns:
- the current instance of
WorkmanagerSecurityMappingsType
-
-