Interface ActionMappingDef
-
- All Superinterfaces:
java.lang.Cloneable,net.anotheria.asg.data.DataObject,net.anotheria.util.sorter.IComparable
- All Known Implementing Classes:
ActionMappingDefDocument
public interface ActionMappingDef extends net.anotheria.asg.data.DataObject, net.anotheria.util.sorter.IComparable
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringLINK_PROP_ACTIONConstant property name for "action" for internal storage and queries.static java.lang.StringLINK_PROP_PAGEConstant property name for "page" for internal storage and queries.static java.lang.StringPROP_COMMANDConstant property name for "command" for internal storage and queries.static java.lang.StringPROP_IDConstant property name for "id" for internal storage and queries.static java.lang.StringPROP_LOCALIZATION_BUNDLESConstant property name for "localizationBundles" for internal storage and queries.static java.lang.StringPROP_NAMEConstant property name for "name" for internal storage and queries.static java.lang.StringPROP_PARAMETERSConstant property name for "parameters" for internal storage and queries.static java.lang.StringPROP_URLConstant property name for "url" for internal storage and queries.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddLocalizationBundlesElement(java.lang.String localizationBundles)Adds a new element to the list.java.lang.StringgetAction()Returns the value of the action attribute.intgetCommand()Returns the value of the command attribute.java.util.List<java.lang.String>getLocalizationBundles()Returns the value of the localizationBundles attribute.java.lang.StringgetLocalizationBundlesElement(int index)Returns the element at the position index in the list.intgetLocalizationBundlesSize()Returns the number of elements in the "localizationBundles" containerjava.lang.StringgetName()Returns the value of the name attribute.java.lang.StringgetPage()Returns the value of the page attribute.java.lang.StringgetParameters()Returns the value of the parameters attribute.java.lang.StringgetUrl()Returns the value of the url attribute.voidremoveLocalizationBundlesElement(int index)Removes the element at position index from the list.voidsetAction(java.lang.String value)Sets the value of the action attribute.voidsetCommand(int value)Sets the value of the command attribute.voidsetLocalizationBundles(java.util.List<java.lang.String> value)Sets the value of the localizationBundles attribute.voidsetName(java.lang.String value)Sets the value of the name attribute.voidsetPage(java.lang.String value)Sets the value of the page attribute.voidsetParameters(java.lang.String value)Sets the value of the parameters attribute.voidsetUrl(java.lang.String value)Sets the value of the url attribute.voidswapLocalizationBundlesElement(int index1, int index2)Swaps elements at positions index1 and index2 in the list.
-
-
-
Field Detail
-
PROP_ID
static final java.lang.String PROP_ID
Constant property name for "id" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_NAME
static final java.lang.String PROP_NAME
Constant property name for "name" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_URL
static final java.lang.String PROP_URL
Constant property name for "url" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_PARAMETERS
static final java.lang.String PROP_PARAMETERS
Constant property name for "parameters" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_COMMAND
static final java.lang.String PROP_COMMAND
Constant property name for "command" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_LOCALIZATION_BUNDLES
static final java.lang.String PROP_LOCALIZATION_BUNDLES
Constant property name for "localizationBundles" for internal storage and queries.- See Also:
- Constant Field Values
-
LINK_PROP_ACTION
static final java.lang.String LINK_PROP_ACTION
Constant property name for "action" for internal storage and queries.- See Also:
- Constant Field Values
-
LINK_PROP_PAGE
static final java.lang.String LINK_PROP_PAGE
Constant property name for "page" for internal storage and queries.- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the value of the name attribute.
-
setName
void setName(java.lang.String value)
Sets the value of the name attribute.
-
getUrl
java.lang.String getUrl()
Returns the value of the url attribute.
-
setUrl
void setUrl(java.lang.String value)
Sets the value of the url attribute.
-
getParameters
java.lang.String getParameters()
Returns the value of the parameters attribute.
-
setParameters
void setParameters(java.lang.String value)
Sets the value of the parameters attribute.
-
getCommand
int getCommand()
Returns the value of the command attribute.
-
setCommand
void setCommand(int value)
Sets the value of the command attribute.
-
getLocalizationBundles
java.util.List<java.lang.String> getLocalizationBundles()
Returns the value of the localizationBundles attribute.
-
setLocalizationBundles
void setLocalizationBundles(java.util.List<java.lang.String> value)
Sets the value of the localizationBundles attribute.
-
getAction
java.lang.String getAction()
Returns the value of the action attribute.
-
setAction
void setAction(java.lang.String value)
Sets the value of the action attribute.
-
getPage
java.lang.String getPage()
Returns the value of the page attribute.
-
setPage
void setPage(java.lang.String value)
Sets the value of the page attribute.
-
getLocalizationBundlesSize
int getLocalizationBundlesSize()
Returns the number of elements in the "localizationBundles" container
-
addLocalizationBundlesElement
void addLocalizationBundlesElement(java.lang.String localizationBundles)
Adds a new element to the list.
-
removeLocalizationBundlesElement
void removeLocalizationBundlesElement(int index)
Removes the element at position index from the list.
-
swapLocalizationBundlesElement
void swapLocalizationBundlesElement(int index1, int index2)Swaps elements at positions index1 and index2 in the list.
-
getLocalizationBundlesElement
java.lang.String getLocalizationBundlesElement(int index)
Returns the element at the position index in the list.
-
-