Record

public class Record

Java class for record complex type.

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

<complexType name="record">
  <complexContent>
    <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
      <attribute name="created" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
      <attribute name="updated" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
      <attribute name="status" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
      <attribute name="sourceDirectory" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
    </restriction>
  </complexContent>
</complexType>

Constructors

Record

public Record()

Record

public Record(DateTime created, String status, DateTime updated)

Record

public Record(DateTime created, DateTime updated, String status, String sourceDirectory)

Methods

equals

public boolean equals(Object o)

getCreated

public DateTime getCreated()

getSourceDirectory

public String getSourceDirectory()

getStatus

public String getStatus()

getUpdated

public DateTime getUpdated()

hashCode

public int hashCode()

setCreated

public void setCreated(DateTime created)

setSourceDirectory

public void setSourceDirectory(String sourceDirectory)

setStatus

public void setStatus(String status)

setUpdated

public void setUpdated(DateTime updated)

toString

public String toString()