|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of OperationType in com.atlassian.crowd.console.action.application |
|---|
| Methods in com.atlassian.crowd.console.action.application with parameters of type OperationType | |
|---|---|
boolean |
ViewApplication.hasPermission(OperationType operationType)
|
boolean |
ViewApplication.permissionEnabledGlobally(OperationType operationType)
|
| Uses of OperationType in com.atlassian.crowd.dao.application |
|---|
| Methods in com.atlassian.crowd.dao.application with parameters of type OperationType | |
|---|---|
void |
ApplicationDAOHibernate.addDirectoryMapping(long applicationId,
long directoryId,
boolean allowAllToAuthenticate,
OperationType... operationTypes)
|
void |
ApplicationDAO.addDirectoryMapping(long applicationId,
long directoryId,
boolean allowAllToAuthenticate,
OperationType... operationTypes)
|
| Method parameters in com.atlassian.crowd.dao.application with type arguments of type OperationType | |
|---|---|
void |
ApplicationDAOHibernate.updateDirectoryMapping(long applicationId,
long directoryId,
boolean allowAllToAuthenticate,
java.util.Set<OperationType> operationTypes)
|
void |
ApplicationDAO.updateDirectoryMapping(long applicationId,
long directoryId,
boolean allowAllToAuthenticate,
java.util.Set<OperationType> operationTypes)
|
| Uses of OperationType in com.atlassian.crowd.embedded.api |
|---|
| Methods in com.atlassian.crowd.embedded.api that return OperationType | |
|---|---|
OperationType |
OperationType.fromName(java.lang.String name)
|
static OperationType |
OperationType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static OperationType[] |
OperationType.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods in com.atlassian.crowd.embedded.api that return types with arguments of type OperationType | |
|---|---|
java.util.Set<OperationType> |
Directory.getAllowedOperations()
|
| Uses of OperationType in com.atlassian.crowd.embedded.impl |
|---|
| Methods in com.atlassian.crowd.embedded.impl that return types with arguments of type OperationType | |
|---|---|
java.util.Set<OperationType> |
ImmutableDirectory.getAllowedOperations()
|
| Method parameters in com.atlassian.crowd.embedded.impl with type arguments of type OperationType | |
|---|---|
void |
ImmutableDirectory.Builder.setAllowedOperations(java.util.Set<OperationType> allowedOperations)
|
| Constructor parameters in com.atlassian.crowd.embedded.impl with type arguments of type OperationType | |
|---|---|
ImmutableDirectory(java.lang.Long id,
java.lang.String name,
boolean active,
java.lang.String description,
java.lang.String encryptionType,
DirectoryType type,
java.lang.String implementationClass,
java.util.Date createdDate,
java.util.Date updatedDate,
java.util.Set<OperationType> allowedOperations,
java.util.Map<java.lang.String,java.lang.String> attributes)
|
|
| Uses of OperationType in com.atlassian.crowd.manager.application |
|---|
| Methods in com.atlassian.crowd.manager.application with parameters of type OperationType | |
|---|---|
void |
ApplicationManager.addDirectoryMapping(Application application,
Directory directory,
boolean allowAllToAuthenticate,
OperationType... operationTypes)
Will add a DirectoryMapping between the passed in Application and Directory. |
void |
ApplicationManagerGeneric.addDirectoryMapping(Application application,
Directory directory,
boolean allowAllToAuthenticate,
OperationType... operationTypes)
|
| Method parameters in com.atlassian.crowd.manager.application with type arguments of type OperationType | |
|---|---|
void |
ApplicationManager.updateDirectoryMapping(Application application,
Directory directory,
boolean allowAllToAuthenticate,
java.util.Set<OperationType> operationTypes)
Will update a directory mapping against the Application moving it to the selected position in the list of DirectoryMappings. |
void |
ApplicationManagerGeneric.updateDirectoryMapping(Application application,
Directory directory,
boolean allowAllToAuthenticate,
java.util.Set<OperationType> operationTypes)
|
| Uses of OperationType in com.atlassian.crowd.manager.permission |
|---|
| Methods in com.atlassian.crowd.manager.permission with parameters of type OperationType | |
|---|---|
void |
PermissionManager.addPermission(Application application,
Directory directory,
OperationType operationType)
Adds a permission for the given OperationType to an Application+Directory mapping. |
void |
PermissionManagerImpl.addPermission(Application application,
Directory directory,
OperationType operationType)
|
void |
PermissionManager.addPermission(Directory directory,
OperationType operationType)
|
void |
PermissionManagerImpl.addPermission(Directory directory,
OperationType operationType)
|
boolean |
PermissionManager.hasPermission(Application application,
Directory directory,
OperationType operationType)
Determine whether an application has permission to execute a particular operation on a given directory. |
boolean |
PermissionManagerImpl.hasPermission(Application application,
Directory directory,
OperationType operationType)
|
boolean |
PermissionManager.hasPermission(Directory directory,
OperationType operationType)
Determine whether a directory has the permission to perform a certain operation. |
boolean |
PermissionManagerImpl.hasPermission(Directory directory,
OperationType operationType)
|
void |
PermissionManager.removePermission(Application application,
Directory directory,
OperationType operationType)
Removes a permission with the given OperationType from the Application+Directory mapping |
void |
PermissionManagerImpl.removePermission(Application application,
Directory directory,
OperationType operationType)
|
void |
PermissionManager.removePermission(Directory directory,
OperationType operationType)
|
void |
PermissionManagerImpl.removePermission(Directory directory,
OperationType operationType)
|
| Uses of OperationType in com.atlassian.crowd.migration |
|---|
| Methods in com.atlassian.crowd.migration that return OperationType | |
|---|---|
protected OperationType |
GenericMapper.getOperationTypeFromLegacyPermissionName(java.lang.String name)
|
| Uses of OperationType in com.atlassian.crowd.model.application |
|---|
| Methods in com.atlassian.crowd.model.application that return types with arguments of type OperationType | |
|---|---|
java.util.Set<OperationType> |
DirectoryMapping.getAllowedOperations()
|
| Methods in com.atlassian.crowd.model.application with parameters of type OperationType | |
|---|---|
void |
DirectoryMapping.addAllowedOperation(OperationType operationType)
|
void |
DirectoryMapping.addAllowedOperations(OperationType... operationTypes)
|
void |
ApplicationImpl.addDirectoryMapping(Directory directory,
boolean allowAllToAuthenticate,
OperationType... operationTypes)
|
boolean |
DirectoryMapping.isAllowed(OperationType operation)
|
| Method parameters in com.atlassian.crowd.model.application with type arguments of type OperationType | |
|---|---|
void |
DirectoryMapping.setAllowedOperations(java.util.Set<OperationType> allowedOperations)
|
| Constructor parameters in com.atlassian.crowd.model.application with type arguments of type OperationType | |
|---|---|
DirectoryMapping(Application application,
Directory directory,
boolean allowAllToAuthenticate,
java.util.Set<OperationType> allowedOperations)
|
|
| Uses of OperationType in com.atlassian.crowd.model.directory |
|---|
| Methods in com.atlassian.crowd.model.directory that return types with arguments of type OperationType | |
|---|---|
java.util.Set<OperationType> |
DirectoryImpl.getAllowedOperations()
|
| Methods in com.atlassian.crowd.model.directory with parameters of type OperationType | |
|---|---|
void |
DirectoryImpl.addAllowedOperation(OperationType operationType)
|
| Method parameters in com.atlassian.crowd.model.directory with type arguments of type OperationType | |
|---|---|
void |
DirectoryImpl.setAllowedOperations(java.util.Set<OperationType> allowedOperations)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||