Class XIndex
- java.lang.Object
-
- com.priint.pubserver.tagging.TaggingObject
-
- com.priint.pubserver.comet.bridge.Comet3Entity
-
- com.priint.pubserver.comet3.entity.XIndex
-
- All Implemented Interfaces:
java.io.Serializable
public class XIndex extends Comet3Entity
Java Interface for index complex type. For internal use only
The following schema fragments specify the expected content contained within this class.
<complexType name="index"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="file" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1"/> <element name="nodepath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1"/> <element name="unique" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1"/> <element name="enabled" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="1"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.priint.pubserver.tagging.TaggingObject
TaggingObject.LinkedSetWrapper<T>
-
-
Field Summary
-
Fields inherited from class com.priint.pubserver.comet.bridge.Comet3Entity
id, timestamp
-
Fields inherited from class com.priint.pubserver.tagging.TaggingObject
tagsSet
-
-
Constructor Summary
Constructors Constructor Description XIndex()Instantiates a new X index.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetEnabled()Gets enabled.java.lang.StringgetFile()Gets file.java.lang.StringgetNodepath()Gets nodepath.java.lang.StringgetUnique()Gets unique.voidsetEnabled(java.lang.String enabled)Sets enabled.voidsetFile(java.lang.String file)Sets file.voidsetNodepath(java.lang.String nodepath)Sets nodepath.voidsetUnique(java.lang.String unique)Sets unique.-
Methods inherited from class com.priint.pubserver.comet.bridge.Comet3Entity
entityEquals, entityEquals, getId, getLastModificationTimestamp, info, postprocess, setId, setLastModificationTimestamp
-
Methods inherited from class com.priint.pubserver.tagging.TaggingObject
addToTags, getTags, getTagValue, inTags, isA, removeFromTags, searchListByTags, setTags, setTags
-
-
-
-
Method Detail
-
getFile
public java.lang.String getFile()
Gets file.- Returns:
- the file
-
setFile
public void setFile(java.lang.String file)
Sets file.- Parameters:
file- the file
-
getNodepath
public java.lang.String getNodepath()
Gets nodepath.- Returns:
- the nodepath
-
setNodepath
public void setNodepath(java.lang.String nodepath)
Sets nodepath.- Parameters:
nodepath- the nodepath
-
getUnique
public java.lang.String getUnique()
Gets unique.- Returns:
- the unique
-
setUnique
public void setUnique(java.lang.String unique)
Sets unique.- Parameters:
unique- the unique
-
getEnabled
public java.lang.String getEnabled()
Gets enabled.- Returns:
- the enabled
-
setEnabled
public void setEnabled(java.lang.String enabled)
Sets enabled.- Parameters:
enabled- the enabled
-
-