Package | Description |
---|---|
org.apache.commons.net.nntp |
Modifier and Type | Method and Description |
---|---|
java.io.Reader |
NNTPClient.retrieveArticle(int articleNumber,
ArticlePointer pointer)
Retrieves an article from the currently selected newsgroup.
|
java.io.Reader |
NNTPClient.retrieveArticle(java.lang.String articleId,
ArticlePointer pointer)
Retrieves an article from the NNTP server.
|
java.io.Reader |
NNTPClient.retrieveArticleBody(int articleNumber,
ArticlePointer pointer)
Retrieves an article body from the currently selected newsgroup.
|
java.io.Reader |
NNTPClient.retrieveArticleBody(java.lang.String articleId,
ArticlePointer pointer)
Retrieves an article body from the NNTP server.
|
java.io.Reader |
NNTPClient.retrieveArticleHeader(int articleNumber,
ArticlePointer pointer)
Retrieves an article header from the currently selected newsgroup.
|
java.io.Reader |
NNTPClient.retrieveArticleHeader(java.lang.String articleId,
ArticlePointer pointer)
Retrieves an article header from the NNTP server.
|
boolean |
NNTPClient.selectArticle(ArticlePointer pointer)
Same as
selectArticle(null, articleId) . |
boolean |
NNTPClient.selectArticle(int articleNumber,
ArticlePointer pointer)
Select an article in the currently selected newsgroup by its number.
|
boolean |
NNTPClient.selectArticle(java.lang.String articleId,
ArticlePointer pointer)
Select an article by its unique identifier (including enclosing
< and >) and return its article number and id through the
pointer parameter.
|
boolean |
NNTPClient.selectNextArticle(ArticlePointer pointer)
Select the article following the currently selected article in the
currently selected newsgroup and return its number and unique id
through the pointer parameter.
|
boolean |
NNTPClient.selectPreviousArticle(ArticlePointer pointer)
Select the article preceeding the currently selected article in the
currently selected newsgroup and return its number and unique id
through the pointer parameter.
|