com.ibm.commerce.giftregistry.struts

Class GiftRegistryActionMapping

  • java.lang.Object
  • All Implemented Interfaces:
    com.ibm.commerce.adapter.HttpRequestAttributes, java.io.Serializable


    public class GiftRegistryActionMapping
    extends ECActionMapping
    This action mapping allows a Struts action to specify which other Struts actions need to be invoked. For example, the following configuration specifies that GiftRegistryCreate and GiftRegistryItemAdd can be invoked in specified order:
                    
     
    See Also:
    Serialized Form
    • Field Detail

      • COPYRIGHT

        public static final java.lang.String COPYRIGHT
        IBM Copyright
        See Also:
        Constant Field Values
      • CLASS_NAME

        public static final java.lang.String CLASS_NAME
        The name of this class
    • Constructor Detail

      • GiftRegistryActionMapping

        public GiftRegistryActionMapping()
    • Method Detail

      • getActionPaths

        public java.lang.String getActionPaths()
        Gets the string of all the action paths, which may be invoked.
        Returns:
        the action path string that is specified by the
      • setActionPaths

        public void setActionPaths(java.lang.String actionPaths)
        Sets the value of the actionPaths property. This property is intended for
        Parameters:
        value - the new value of the actionPaths property
      • getActionPathList

        public java.lang.String[] getActionPathList()
        Gets a list of paths that represent the Struts actions that will be called.
        Returns:
        an array of action paths. For example, if getActionPaths() returns "/a, /b", then this method will return String[]{"/a", "/b"}. If the getActionPaths() returns null, an empty array will be returned. The order of the array element is guaranteed to be the same as the order of the paths in the specified actionPaths.