com.splunk
Class AtomObject

java.lang.Object
  extended by com.splunk.AtomObject
Direct Known Subclasses:
AtomEntry, AtomFeed

public class AtomObject
extends java.lang.Object

The AtomObject class represents a generic Atom object. This class is a common base class shared by AtomFeed and AtomEntry.


Field Summary
 java.lang.String id
          The value of the Atom <id> element.
 java.util.Map<java.lang.String,java.lang.String> links
          The value of the <link> elements in this AtomObject.
 java.lang.String title
          The value of the Atom <title> element.
 java.lang.String updated
          The value of the Atom <updated> element.
 
Constructor Summary
AtomObject()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

id

public java.lang.String id
The value of the Atom <id> element.


links

public java.util.Map<java.lang.String,java.lang.String> links
The value of the <link> elements in this AtomObject.


title

public java.lang.String title
The value of the Atom <title> element.


updated

public java.lang.String updated
The value of the Atom <updated> element.

Constructor Detail

AtomObject

public AtomObject()