Interface EntryPoint

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

public interface EntryPoint 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 "startPage" for internal storage and queries.
    static final String
    Constant property name for "startSite" for internal storage and queries.
    static final String
    Constant property name for "defaultEntry" for internal storage and queries.
    static final String
    Constant property name for "domains" 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 "type" for internal storage and queries.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Adds a new element to the list.
    boolean
    Returns the value of the defaultEntry attribute.
    Returns the value of the domains attribute.
    getDomainsElement(int index)
    Returns the element at the position index in the list.
    int
    Returns the number of elements in the "domains" container
    Returns the value of the name attribute.
    Returns the value of the startPage attribute.
    Returns the value of the startSite attribute.
    int
    Returns the value of the type attribute.
    void
    Removes the element at position index from the list.
    void
    setDefaultEntry(boolean value)
    Sets the value of the defaultEntry attribute.
    void
    Sets the value of the domains attribute.
    void
    setName(String value)
    Sets the value of the name attribute.
    void
    Sets the value of the startPage attribute.
    void
    Sets the value of the startSite attribute.
    void
    setType(int value)
    Sets the value of the type attribute.
    void
    swapDomainsElement(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_TYPE

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

      static final String PROP_DEFAULT_ENTRY
      Constant property name for "defaultEntry" for internal storage and queries.
      See Also:
    • PROP_DOMAINS

      static final String PROP_DOMAINS
      Constant property name for "domains" 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.
    • getType

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

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

      boolean getDefaultEntry()
      Returns the value of the defaultEntry attribute.
    • setDefaultEntry

      void setDefaultEntry(boolean value)
      Sets the value of the defaultEntry attribute.
    • getDomains

      List<String> getDomains()
      Returns the value of the domains attribute.
    • setDomains

      void setDomains(List<String> value)
      Sets the value of the domains attribute.
    • getStartPage

      String getStartPage()
      Returns the value of the startPage attribute.
    • setStartPage

      void setStartPage(String value)
      Sets the value of the startPage attribute.
    • getStartSite

      String getStartSite()
      Returns the value of the startSite attribute.
    • setStartSite

      void setStartSite(String value)
      Sets the value of the startSite attribute.
    • getDomainsSize

      int getDomainsSize()
      Returns the number of elements in the "domains" container
    • addDomainsElement

      void addDomainsElement(String domain)
      Adds a new element to the list.
    • removeDomainsElement

      void removeDomainsElement(int index)
      Removes the element at position index from the list.
    • swapDomainsElement

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

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