Interface PageAlias

All Superinterfaces:
Cloneable, net.anotheria.asg.data.DataObject, net.anotheria.util.sorter.IComparable
All Known Implementing Classes:
PageAliasDocument

public interface PageAlias extends net.anotheria.asg.data.DataObject, net.anotheria.util.sorter.IComparable
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Constant property name for "targetPage" for internal storage and queries.
    static final String
    Constant property name for "id" for internal storage and queries.
    static final String
    Constant property name for "name" for internal storage and queries.
    static final String
    Constant property name for "parameters" for internal storage and queries.
    static final String
    Constant property name for "pathes" for internal storage and queries.
    static final String
    Constant property name for "type" for internal storage and queries.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Adds a new element to the list.
    Returns the value of the name attribute.
    Returns the value of the parameters attribute.
    Returns the value of the pathes attribute.
    getPathesElement(int index)
    Returns the element at the position index in the list.
    int
    Returns the number of elements in the "pathes" container
    Returns the value of the targetPage attribute.
    int
    Returns the value of the type attribute.
    void
    Removes the element at position index from the list.
    void
    setName(String value)
    Sets the value of the name attribute.
    void
    Sets the value of the parameters attribute.
    void
    Sets the value of the pathes attribute.
    void
    Sets the value of the targetPage attribute.
    void
    setType(int value)
    Sets the value of the type attribute.
    void
    swapPathesElement(int index1, int index2)
    Swaps elements at positions index1 and index2 in the list.

    Methods inherited from interface net.anotheria.asg.data.DataObject

    clone, getDefinedName, getDefinedParentName, getFootprint, getId, getLastUpdateTimestamp, getObjectInfo, getPropertyValue, toXMLNode

    Methods inherited from interface net.anotheria.util.sorter.IComparable

    compareTo
  • Field Details

    • PROP_ID

      static final String PROP_ID
      Constant property name for "id" for internal storage and queries.
      See Also:
    • PROP_NAME

      static final String PROP_NAME
      Constant property name for "name" for internal storage and queries.
      See Also:
    • PROP_PARAMETERS

      static final String PROP_PARAMETERS
      Constant property name for "parameters" for internal storage and queries.
      See Also:
    • PROP_TYPE

      static final String PROP_TYPE
      Constant property name for "type" for internal storage and queries.
      See Also:
    • PROP_PATHES

      static final String PROP_PATHES
      Constant property name for "pathes" for internal storage and queries.
      See Also:
  • Method Details

    • getName

      String getName()
      Returns the value of the name attribute.
    • setName

      void setName(String value)
      Sets the value of the name attribute.
    • getParameters

      String getParameters()
      Returns the value of the parameters attribute.
    • setParameters

      void setParameters(String value)
      Sets the value of the parameters attribute.
    • getType

      int getType()
      Returns the value of the type attribute.
    • setType

      void setType(int value)
      Sets the value of the type attribute.
    • getPathes

      List<String> getPathes()
      Returns the value of the pathes attribute.
    • setPathes

      void setPathes(List<String> value)
      Sets the value of the pathes attribute.
    • getTargetPage

      String getTargetPage()
      Returns the value of the targetPage attribute.
    • setTargetPage

      void setTargetPage(String value)
      Sets the value of the targetPage attribute.
    • getPathesSize

      int getPathesSize()
      Returns the number of elements in the "pathes" container
    • addPathesElement

      void addPathesElement(String path)
      Adds a new element to the list.
    • removePathesElement

      void removePathesElement(int index)
      Removes the element at position index from the list.
    • swapPathesElement

      void swapPathesElement(int index1, int index2)
      Swaps elements at positions index1 and index2 in the list.
    • getPathesElement

      String getPathesElement(int index)
      Returns the element at the position index in the list.