Package org.openiam.mq.constants.api.am
Enum OrganizationAPI
- java.lang.Object
-
- java.lang.Enum<OrganizationAPI>
-
- org.openiam.mq.constants.api.am.OrganizationAPI
-
- All Implemented Interfaces:
Serializable
,Comparable<OrganizationAPI>
,OpenIAMAPI
public enum OrganizationAPI extends Enum<OrganizationAPI> implements OpenIAMAPI
Created by Alexander Dukkardt on 2017-01-23.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.openiam.mq.constants.api.OpenIAMAPI
OpenIAMAPI.OpenIAMAPIResolver<T extends OpenIAMAPI>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isRegisterInAuditLog()
Need we save operation in auditlogs (uses for foreign requests - not UI requests)static OrganizationAPI
valueOf(String name)
Returns the enum constant of this type with the specified name.static OrganizationAPI[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface org.openiam.mq.constants.api.OpenIAMAPI
name
-
-
-
-
Enum Constant Detail
-
FindBeans
public static final OrganizationAPI FindBeans
-
GetAllowedParentOrganizationsForType
public static final OrganizationAPI GetAllowedParentOrganizationsForType
-
SaveOrganization
public static final OrganizationAPI SaveOrganization
-
RemoveChildOrganization
public static final OrganizationAPI RemoveChildOrganization
-
AddChildOrganization
public static final OrganizationAPI AddChildOrganization
-
AddRoleToOrganization
public static final OrganizationAPI AddRoleToOrganization
-
RemoveRoleFromOrganization
public static final OrganizationAPI RemoveRoleFromOrganization
-
AddResourceToOrganization
public static final OrganizationAPI AddResourceToOrganization
-
RemoveResourceFromOrganization
public static final OrganizationAPI RemoveResourceFromOrganization
-
AddGroupToOrganization
public static final OrganizationAPI AddGroupToOrganization
-
RemoveGroupFromOrganization
public static final OrganizationAPI RemoveGroupFromOrganization
-
DeleteOrganization
public static final OrganizationAPI DeleteOrganization
-
ValidateEdit
public static final OrganizationAPI ValidateEdit
-
ValidateDelete
public static final OrganizationAPI ValidateDelete
-
CanAddUserToOrganization
public static final OrganizationAPI CanAddUserToOrganization
-
CanRemoveUserToOrganization
public static final OrganizationAPI CanRemoveUserToOrganization
-
AddLocation
public static final OrganizationAPI AddLocation
-
RemoveLocation
public static final OrganizationAPI RemoveLocation
-
GetLocation
public static final OrganizationAPI GetLocation
-
FindLocationBeans
public static final OrganizationAPI FindLocationBeans
-
GetNumOfLocations
public static final OrganizationAPI GetNumOfLocations
-
GetLocationListByPageForUser
public static final OrganizationAPI GetLocationListByPageForUser
-
GetOrganizationAttributes
public static final OrganizationAPI GetOrganizationAttributes
-
IsIndexed
public static final OrganizationAPI IsIndexed
-
ReIndex
public static final OrganizationAPI ReIndex
-
Count
public static final OrganizationAPI Count
-
UpdateLocation
public static final OrganizationAPI UpdateLocation
-
GetOrganization
public static final OrganizationAPI GetOrganization
-
SuggestById
public static final OrganizationAPI SuggestById
-
GET_DETACHED_FOR_USER
public static final OrganizationAPI GET_DETACHED_FOR_USER
-
GET_WITH_RESOURCES
public static final OrganizationAPI GET_WITH_RESOURCES
-
-
Method Detail
-
values
public static OrganizationAPI[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OrganizationAPI c : OrganizationAPI.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OrganizationAPI valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
isRegisterInAuditLog
public boolean isRegisterInAuditLog()
Description copied from interface:OpenIAMAPI
Need we save operation in auditlogs (uses for foreign requests - not UI requests)- Specified by:
isRegisterInAuditLog
in interfaceOpenIAMAPI
- Returns:
- true
-
-