public static enum Application.Section extends java.lang.Enum<Application.Section>
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
Enum Constant and Description |
---|
ACTIONS |
ASSOCIATED_APPLICATIONS |
ASSOCIATED_OBJECTS |
METADATA |
NAVIGATION |
SECURITY |
Modifier and Type | Method and Description |
---|---|
static Application.Section |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Application.Section[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Application.Section METADATA
public static final Application.Section ASSOCIATED_OBJECTS
public static final Application.Section NAVIGATION
public static final Application.Section ACTIONS
public static final Application.Section SECURITY
public static final Application.Section ASSOCIATED_APPLICATIONS
public static Application.Section[] values()
for (Application.Section c : Application.Section.values()) System.out.println(c);
public static Application.Section valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2003-2024 Appian Corporation. All Rights Reserved.