Package de.espirit.firstspirit.agency
Enum Class ModuleAdminAgent.UpdateUsagesMode
java.lang.Object
java.lang.Enum<ModuleAdminAgent.UpdateUsagesMode>
de.espirit.firstspirit.agency.ModuleAdminAgent.UpdateUsagesMode
- All Implemented Interfaces:
Serializable
,Comparable<ModuleAdminAgent.UpdateUsagesMode>
,Constable
- Enclosing interface:
- ModuleAdminAgent
public static enum ModuleAdminAgent.UpdateUsagesMode
extends Enum<ModuleAdminAgent.UpdateUsagesMode>
Defines the actions to be performed when a module is updated or uninstalled.
- Since:
- 5.2.241104
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDo not update or remove any project-app or web-app components.Update or remove any project-app or web-app components but do not redeploy any web-applications.Update or remove any project-app or web-app components and redeploy all modified web-applications. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ModuleAdminAgent.UpdateUsagesMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DO_NOTHING
Do not update or remove any project-app or web-app components.- Since:
- 5.2.241104
-
UPDATE_COMPONENTS
Update or remove any project-app or web-app components but do not redeploy any web-applications.- Since:
- 5.2.241104
-
UPDATE_COMPONENTS_AND_REDEPLOY
Update or remove any project-app or web-app components and redeploy all modified web-applications.- Since:
- 5.2.241104
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-