Package com.day.cq.wcm.msm.api
Interface ActionConfig
-
- All Superinterfaces:
java.lang.Comparable<ActionConfig>,JSONItem
@Deprecated public interface ActionConfig extends java.lang.Comparable<ActionConfig>, JSONItem
Deprecated.since 5.5AnActionConfigis the config of aLiveActionduring a perform a rollout. It is composed of a name and a set of properties that can be used by the action.- See Also:
LiveAction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetName()Deprecated.Returns the name of the action.java.lang.StringgetParameterName()Deprecated.Returns the request parameter name of the action.java.util.Map<java.lang.String,java.lang.String>getProperties()Deprecated.Returns the map of propertiesjava.lang.StringgetProperty(java.lang.String propertyName)Deprecated.Returns the value of one propertyintgetRank()Deprecated.Returns the rank of the action (allows to classify several actions).booleanhasProperty(java.lang.String propertyName)Deprecated.Returns if the action contains the defined property.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Deprecated.Returns the name of the action.- Returns:
- the name
-
getParameterName
java.lang.String getParameterName()
Deprecated.Returns the request parameter name of the action.- Returns:
- the parameter name
-
getProperties
java.util.Map<java.lang.String,java.lang.String> getProperties()
Deprecated.Returns the map of properties- Returns:
- the map or an empty map
-
getProperty
java.lang.String getProperty(java.lang.String propertyName)
Deprecated.Returns the value of one property- Parameters:
propertyName- Name of the property to retrieve- Returns:
- the value or null.
-
hasProperty
boolean hasProperty(java.lang.String propertyName)
Deprecated.Returns if the action contains the defined property.- Parameters:
propertyName- The name of the property to test- Returns:
- True if action contains the defined property, false otherwise.
-
getRank
int getRank()
Deprecated.Returns the rank of the action (allows to classify several actions).- Returns:
- the rank
-
-