org.apache.commons.net.nntp
Class ArticlePointer
java.lang.Object
org.apache.commons.net.nntp.ArticlePointer
public final class ArticlePointer
- extends Object
This class is a structure used to return article number and unique
id information extracted from an NNTP server reply. You will normally
want this information when issuing a STAT command, implemented by
selectArticle
.
- Author:
- Daniel F. Savarese
- See Also:
NNTPClient
Field Summary |
String |
articleId
The unique id of the referenced article, including the enclosing
< and > symbols which are technically not part of the
identifier, but are required by all NNTP commands taking an
article id as an argument. |
int |
articleNumber
The number of the referenced article. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
articleNumber
public int articleNumber
- The number of the referenced article.
articleId
public String articleId
- The unique id of the referenced article, including the enclosing
< and > symbols which are technically not part of the
identifier, but are required by all NNTP commands taking an
article id as an argument.
ArticlePointer
public ArticlePointer()
Copyright © The Apache Software Foundation. All Rights Reserved.