Interface EntryPoint
-
- All Superinterfaces:
java.lang.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 java.lang.StringLINK_PROP_START_PAGEConstant property name for "startPage" for internal storage and queries.static java.lang.StringLINK_PROP_START_SITEConstant property name for "startSite" for internal storage and queries.static java.lang.StringPROP_DEFAULT_ENTRYConstant property name for "defaultEntry" for internal storage and queries.static java.lang.StringPROP_DOMAINSConstant property name for "domains" for internal storage and queries.static java.lang.StringPROP_IDConstant property name for "id" for internal storage and queries.static java.lang.StringPROP_NAMEConstant property name for "name" for internal storage and queries.static java.lang.StringPROP_TYPEConstant property name for "type" for internal storage and queries.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddDomainsElement(java.lang.String domain)Adds a new element to the list.booleangetDefaultEntry()Returns the value of the defaultEntry attribute.java.util.List<java.lang.String>getDomains()Returns the value of the domains attribute.java.lang.StringgetDomainsElement(int index)Returns the element at the position index in the list.intgetDomainsSize()Returns the number of elements in the "domains" containerjava.lang.StringgetName()Returns the value of the name attribute.java.lang.StringgetStartPage()Returns the value of the startPage attribute.java.lang.StringgetStartSite()Returns the value of the startSite attribute.intgetType()Returns the value of the type attribute.voidremoveDomainsElement(int index)Removes the element at position index from the list.voidsetDefaultEntry(boolean value)Sets the value of the defaultEntry attribute.voidsetDomains(java.util.List<java.lang.String> value)Sets the value of the domains attribute.voidsetName(java.lang.String value)Sets the value of the name attribute.voidsetStartPage(java.lang.String value)Sets the value of the startPage attribute.voidsetStartSite(java.lang.String value)Sets the value of the startSite attribute.voidsetType(int value)Sets the value of the type attribute.voidswapDomainsElement(int index1, int index2)Swaps elements at positions index1 and index2 in the list.
-
-
-
Field Detail
-
PROP_ID
static final java.lang.String PROP_ID
Constant property name for "id" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_NAME
static final java.lang.String PROP_NAME
Constant property name for "name" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_TYPE
static final java.lang.String PROP_TYPE
Constant property name for "type" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_DEFAULT_ENTRY
static final java.lang.String PROP_DEFAULT_ENTRY
Constant property name for "defaultEntry" for internal storage and queries.- See Also:
- Constant Field Values
-
PROP_DOMAINS
static final java.lang.String PROP_DOMAINS
Constant property name for "domains" for internal storage and queries.- See Also:
- Constant Field Values
-
LINK_PROP_START_PAGE
static final java.lang.String LINK_PROP_START_PAGE
Constant property name for "startPage" for internal storage and queries.- See Also:
- Constant Field Values
-
LINK_PROP_START_SITE
static final java.lang.String LINK_PROP_START_SITE
Constant property name for "startSite" for internal storage and queries.- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the value of the name attribute.
-
setName
void setName(java.lang.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
java.util.List<java.lang.String> getDomains()
Returns the value of the domains attribute.
-
setDomains
void setDomains(java.util.List<java.lang.String> value)
Sets the value of the domains attribute.
-
getStartPage
java.lang.String getStartPage()
Returns the value of the startPage attribute.
-
setStartPage
void setStartPage(java.lang.String value)
Sets the value of the startPage attribute.
-
getStartSite
java.lang.String getStartSite()
Returns the value of the startSite attribute.
-
setStartSite
void setStartSite(java.lang.String value)
Sets the value of the startSite attribute.
-
getDomainsSize
int getDomainsSize()
Returns the number of elements in the "domains" container
-
addDomainsElement
void addDomainsElement(java.lang.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
java.lang.String getDomainsElement(int index)
Returns the element at the position index in the list.
-
-