Package org.openiam.mq.constants.api.idm
Enum ManagedSystemAPI
- java.lang.Object
-
- java.lang.Enum<ManagedSystemAPI>
-
- org.openiam.mq.constants.api.idm.ManagedSystemAPI
-
- All Implemented Interfaces:
Serializable
,Comparable<ManagedSystemAPI>
,OpenIAMAPI
public enum ManagedSystemAPI extends Enum<ManagedSystemAPI> implements OpenIAMAPI
Created by alexander on 06/09/16.
-
-
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 ManagedSystemAPI
valueOf(String name)
Returns the enum constant of this type with the specified name.static ManagedSystemAPI[]
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
-
GetManagedSystemsCount
public static final ManagedSystemAPI GetManagedSystemsCount
-
GetManagedSystems
public static final ManagedSystemAPI GetManagedSystems
-
SaveManagedSystem
public static final ManagedSystemAPI SaveManagedSystem
-
GetAllManagedSys
public static final ManagedSystemAPI GetAllManagedSys
-
GetAllAutomaticManagedSys
public static final ManagedSystemAPI GetAllAutomaticManagedSys
-
GetManagedSys
public static final ManagedSystemAPI GetManagedSys
-
GetAttributeMapsByManagedSysId
public static final ManagedSystemAPI GetAttributeMapsByManagedSysId
-
RemoveManagedSystem
public static final ManagedSystemAPI RemoveManagedSystem
-
ManagedSysObjectParam
public static final ManagedSystemAPI ManagedSysObjectParam
-
GetManagedSysByResource
public static final ManagedSystemAPI GetManagedSysByResource
-
SaveManagedSystemObjectMatch
public static final ManagedSystemAPI SaveManagedSystemObjectMatch
-
GetAttributeMap
public static final ManagedSystemAPI GetAttributeMap
-
AddAttributeMap
public static final ManagedSystemAPI AddAttributeMap
-
DeleteAttributesMapList
public static final ManagedSystemAPI DeleteAttributesMapList
-
UpdateAttributeMap
public static final ManagedSystemAPI UpdateAttributeMap
-
RemoveAttributeMap
public static final ManagedSystemAPI RemoveAttributeMap
-
GetResourceAttributeMaps
public static final ManagedSystemAPI GetResourceAttributeMaps
-
GetAllDefaultReconcileMap
public static final ManagedSystemAPI GetAllDefaultReconcileMap
-
RemoveMngSysPolicy
public static final ManagedSystemAPI RemoveMngSysPolicy
-
GetAttributeMapsByMngSysPolicyId
public static final ManagedSystemAPI GetAttributeMapsByMngSysPolicyId
-
GetMngSysPolicyById
public static final ManagedSystemAPI GetMngSysPolicyById
-
FindMngSysPolicies
public static final ManagedSystemAPI FindMngSysPolicies
-
GetMngSysPoliciesCount
public static final ManagedSystemAPI GetMngSysPoliciesCount
-
SaveMngSysPolicyBean
public static final ManagedSystemAPI SaveMngSysPolicyBean
-
CreateDefaultPolicyMapForManagedSystem
public static final ManagedSystemAPI CreateDefaultPolicyMapForManagedSystem
-
DecryptPassword
public static final ManagedSystemAPI DecryptPassword
-
SAVE_MANAGED_SYS_REQUEST
public static final ManagedSystemAPI SAVE_MANAGED_SYS_REQUEST
-
ReindexManagedSystem
public static final ManagedSystemAPI ReindexManagedSystem
-
RefreshCache
public static final ManagedSystemAPI RefreshCache
-
CLONE_MANAGED_SYSTEM
public static final ManagedSystemAPI CLONE_MANAGED_SYSTEM
-
SaveSimulationReq
public static final ManagedSystemAPI SaveSimulationReq
-
GetSimulationReqsByManagedSys
public static final ManagedSystemAPI GetSimulationReqsByManagedSys
-
RemoveSimulationReqs
public static final ManagedSystemAPI RemoveSimulationReqs
-
ApplySimulationReqs
public static final ManagedSystemAPI ApplySimulationReqs
-
FindSimulationBeans
public static final ManagedSystemAPI FindSimulationBeans
-
ApplySimulationReqsInSeq
public static final ManagedSystemAPI ApplySimulationReqsInSeq
-
FetchPendingSimulationReq
public static final ManagedSystemAPI FetchPendingSimulationReq
-
-
Method Detail
-
values
public static ManagedSystemAPI[] 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 (ManagedSystemAPI c : ManagedSystemAPI.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ManagedSystemAPI 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
-
-