org.tridas.schema
Class TridasEntity

java.lang.Object
  extended by org.tridas.schema.TridasEntity
All Implemented Interfaces:
Serializable, Cloneable, org.jvnet.jaxb2_commons.lang.CopyTo, org.jvnet.jaxb2_commons.lang.Equals, org.jvnet.jaxb2_commons.lang.HashCode, org.jvnet.jaxb2_commons.lang.ToString, ITridas, ITridasGeneric, TridasIdentifiable
Direct Known Subclasses:
BaseSeries, TridasElement, TridasObject, TridasProject, TridasRadius, TridasSample

public abstract class TridasEntity
extends Object
implements Serializable, Cloneable, org.jvnet.jaxb2_commons.lang.CopyTo, org.jvnet.jaxb2_commons.lang.Equals, org.jvnet.jaxb2_commons.lang.HashCode, org.jvnet.jaxb2_commons.lang.ToString, ITridas, ITridasGeneric

Base data type inherited by all TRiDaS entities. Contains the fields common to all TRiDaS data entities.

Java class for tridasEntity complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="tridasEntity">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element ref="{http://www.tridas.org/1.2.2}title"/>
         <element ref="{http://www.tridas.org/1.2.2}identifier" minOccurs="0"/>
         <element ref="{http://www.tridas.org/1.2.2}createdTimestamp" minOccurs="0"/>
         <element ref="{http://www.tridas.org/1.2.2}lastModifiedTimestamp" minOccurs="0"/>
         <element ref="{http://www.tridas.org/1.2.2}comments" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

See Also:
Serialized Form

Field Summary
protected  String comments
           
protected  DateTime createdTimestamp
           
protected  TridasIdentifier identifier
           
protected  DateTime lastModifiedTimestamp
           
protected  String title
           
 
Constructor Summary
TridasEntity()
           
 
Method Summary
 StringBuilder append(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy strategy)
           
 StringBuilder appendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy strategy)
           
 Object clone()
           
 Object copyTo(Object target)
           
 Object copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, Object target, org.jvnet.jaxb2_commons.lang.CopyStrategy strategy)
           
 boolean equals(Object object)
           
 boolean equals(org.jvnet.jaxb2_commons.locator.ObjectLocator thisLocator, org.jvnet.jaxb2_commons.locator.ObjectLocator thatLocator, Object object, org.jvnet.jaxb2_commons.lang.EqualsStrategy strategy)
           
 String getComments()
          Gets the value of the comments property.
 DateTime getCreatedTimestamp()
          Gets the value of the createdTimestamp property.
 TridasIdentifier getIdentifier()
          Gets the value of the identifier property.
 DateTime getLastModifiedTimestamp()
          Gets the value of the lastModifiedTimestamp property.
 String getTitle()
          Gets the value of the title property.
 int hashCode()
           
 int hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy strategy)
           
 boolean isSetComments()
           
 boolean isSetCreatedTimestamp()
           
 boolean isSetIdentifier()
           
 boolean isSetLastModifiedTimestamp()
           
 boolean isSetTitle()
           
 void setComments(String value)
          Sets the value of the comments property.
 void setCreatedTimestamp(DateTime value)
          Sets the value of the createdTimestamp property.
 void setIdentifier(TridasIdentifier value)
          Sets the value of the identifier property.
 void setLastModifiedTimestamp(DateTime value)
          Sets the value of the lastModifiedTimestamp property.
 void setTitle(String value)
          Sets the value of the title property.
 String toString()
           
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.jvnet.jaxb2_commons.lang.CopyTo
createNewInstance
 
Methods inherited from interface org.tridas.interfaces.ITridasGeneric
getGenericFields, isSetGenericFields, unsetGenericFields
 

Field Detail

title

protected String title

identifier

protected TridasIdentifier identifier

createdTimestamp

protected DateTime createdTimestamp

lastModifiedTimestamp

protected DateTime lastModifiedTimestamp

comments

protected String comments
Constructor Detail

TridasEntity

public TridasEntity()
Method Detail

getTitle

public String getTitle()
Gets the value of the title property.

Specified by:
getTitle in interface ITridas
Returns:
possible object is String

setTitle

public void setTitle(String value)
Sets the value of the title property.

Specified by:
setTitle in interface ITridas
Parameters:
value - allowed object is String

isSetTitle

public boolean isSetTitle()
Specified by:
isSetTitle in interface ITridas

getIdentifier

public TridasIdentifier getIdentifier()
Gets the value of the identifier property.

Specified by:
getIdentifier in interface TridasIdentifiable
Returns:
possible object is TridasIdentifier

setIdentifier

public void setIdentifier(TridasIdentifier value)
Sets the value of the identifier property.

Specified by:
setIdentifier in interface ITridas
Parameters:
value - allowed object is TridasIdentifier

isSetIdentifier

public boolean isSetIdentifier()
Specified by:
isSetIdentifier in interface ITridas

getCreatedTimestamp

public DateTime getCreatedTimestamp()
Gets the value of the createdTimestamp property.

Specified by:
getCreatedTimestamp in interface ITridas
Returns:
possible object is DateTime

setCreatedTimestamp

public void setCreatedTimestamp(DateTime value)
Sets the value of the createdTimestamp property.

Specified by:
setCreatedTimestamp in interface ITridas
Parameters:
value - allowed object is DateTime

isSetCreatedTimestamp

public boolean isSetCreatedTimestamp()
Specified by:
isSetCreatedTimestamp in interface ITridas

getLastModifiedTimestamp

public DateTime getLastModifiedTimestamp()
Gets the value of the lastModifiedTimestamp property.

Specified by:
getLastModifiedTimestamp in interface ITridas
Returns:
possible object is DateTime

setLastModifiedTimestamp

public void setLastModifiedTimestamp(DateTime value)
Sets the value of the lastModifiedTimestamp property.

Specified by:
setLastModifiedTimestamp in interface ITridas
Parameters:
value - allowed object is DateTime

isSetLastModifiedTimestamp

public boolean isSetLastModifiedTimestamp()
Specified by:
isSetLastModifiedTimestamp in interface ITridas

getComments

public String getComments()
Gets the value of the comments property.

Specified by:
getComments in interface ITridas
Returns:
possible object is String

setComments

public void setComments(String value)
Sets the value of the comments property.

Specified by:
setComments in interface ITridas
Parameters:
value - allowed object is String

isSetComments

public boolean isSetComments()
Specified by:
isSetComments in interface ITridas

toString

public String toString()
Overrides:
toString in class Object

append

public StringBuilder append(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
                            StringBuilder buffer,
                            org.jvnet.jaxb2_commons.lang.ToStringStrategy strategy)
Specified by:
append in interface org.jvnet.jaxb2_commons.lang.ToString

appendFields

public StringBuilder appendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
                                  StringBuilder buffer,
                                  org.jvnet.jaxb2_commons.lang.ToStringStrategy strategy)
Specified by:
appendFields in interface org.jvnet.jaxb2_commons.lang.ToString

equals

public boolean equals(org.jvnet.jaxb2_commons.locator.ObjectLocator thisLocator,
                      org.jvnet.jaxb2_commons.locator.ObjectLocator thatLocator,
                      Object object,
                      org.jvnet.jaxb2_commons.lang.EqualsStrategy strategy)
Specified by:
equals in interface org.jvnet.jaxb2_commons.lang.Equals

equals

public boolean equals(Object object)
Overrides:
equals in class Object

hashCode

public int hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
                    org.jvnet.jaxb2_commons.lang.HashCodeStrategy strategy)
Specified by:
hashCode in interface org.jvnet.jaxb2_commons.lang.HashCode

hashCode

public int hashCode()
Overrides:
hashCode in class Object

clone

public Object clone()
Overrides:
clone in class Object

copyTo

public Object copyTo(Object target)
Specified by:
copyTo in interface org.jvnet.jaxb2_commons.lang.CopyTo

copyTo

public Object copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
                     Object target,
                     org.jvnet.jaxb2_commons.lang.CopyStrategy strategy)
Specified by:
copyTo in interface org.jvnet.jaxb2_commons.lang.CopyTo


Copyright © 2011 TRiDaS. All Rights Reserved.