Interface ActionConfig

All Superinterfaces:
Comparable<ActionConfig>, JSONItem

@Deprecated public interface ActionConfig extends Comparable<ActionConfig>, JSONItem
Deprecated.
since 5.5
An ActionConfig is the config of a LiveAction during a perform a rollout. It is composed of a name and a set of properties that can be used by the action.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated.
    Returns the name of the action.
    Deprecated.
    Returns the request parameter name of the action.
    Deprecated.
    Returns the map of properties
    getProperty(String propertyName)
    Deprecated.
    Returns the value of one property
    int
    Deprecated.
    Returns the rank of the action (allows to classify several actions).
    boolean
    hasProperty(String propertyName)
    Deprecated.
    Returns if the action contains the defined property.

    Methods inherited from interface java.lang.Comparable

    compareTo

    Methods inherited from interface com.day.cq.commons.JSONItem

    write
  • Method Details

    • getName

      String getName()
      Deprecated.
      Returns the name of the action.
      Returns:
      the name
    • getParameterName

      String getParameterName()
      Deprecated.
      Returns the request parameter name of the action.
      Returns:
      the parameter name
    • getProperties

      Map<String,String> getProperties()
      Deprecated.
      Returns the map of properties
      Returns:
      the map or an empty map
    • getProperty

      String getProperty(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(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