Enum Class Application.Section
- All Implemented Interfaces:
Serializable
,Comparable<Application.Section>
,Constable
- Enclosing class:
- Application
An application is logically divided in four different sections:
1. Metadata: Those elements in
Application.Metadata
plus name, description and publishing status.
2. Associated objects: All the objects that are logically associated with this application.
3. Navigation: The navigation items associated with this application.
4. Security: Specifies if an application is "public". See Application.setPublic(boolean)
.
Notice that the ApplicationRoleMap
must be updated through
ApplicationService.setRoleMap(Long, ApplicationRoleMap)
.
These sections are used to give the ability to save individual parts of the application bean.
See ApplicationService.save
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic Application.Section
Returns the enum constant of this class with the specified name.static Application.Section[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
METADATA
-
ASSOCIATED_OBJECTS
-
NAVIGATION
-
ACTIONS
-
SECURITY
-
ASSOCIATED_APPLICATIONS
-
-
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
-