com.splunk
Class AtomFeed

java.lang.Object
  extended by com.splunk.AtomObject
      extended by com.splunk.AtomFeed

public class AtomFeed
extends AtomObject

The AtomFeed class represents an Atom feed.


Field Summary
 java.util.ArrayList<AtomEntry> entries
          The list of Atom entries contained in this AtomFeed object.
 java.lang.String itemsPerPage
          The value of the Atom feed's <itemsPerPage> element.
 java.lang.String startIndex
          The value of the Atom feed's <startIndex> element.
 java.lang.String totalResults
          The value of the Atom feed's <totalResults> element.
 
Fields inherited from class com.splunk.AtomObject
id, links, title, updated
 
Constructor Summary
AtomFeed()
           
 
Method Summary
static AtomFeed parseStream(java.io.InputStream input)
          Creates a new AtomFeed instance based on the given stream.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

entries

public java.util.ArrayList<AtomEntry> entries
The list of Atom entries contained in this AtomFeed object.


itemsPerPage

public java.lang.String itemsPerPage
The value of the Atom feed's <itemsPerPage> element.


startIndex

public java.lang.String startIndex
The value of the Atom feed's <startIndex> element.


totalResults

public java.lang.String totalResults
The value of the Atom feed's <totalResults> element.

Constructor Detail

AtomFeed

public AtomFeed()
Method Detail

parseStream

public static AtomFeed parseStream(java.io.InputStream input)
Creates a new AtomFeed instance based on the given stream.

Parameters:
input - The input stream.
Returns:
An AtomFeed instance representing the parsed stream.