Package org.apache.commons.net.nntp
Class ArticlePointer
- java.lang.Object
-
- org.apache.commons.net.nntp.ArticlePointer
-
@Deprecated public final class ArticlePointer extends java.lang.ObjectDeprecated.3.0 useArticleInfoinsteadThis 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 byselectArticle.- See Also:
NNTPClient
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringarticleIdDeprecated.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.intarticleNumberDeprecated.The number of the referenced article.
-
Constructor Summary
Constructors Constructor Description ArticlePointer()Deprecated.
-
-
-
Field Detail
-
articleNumber
public int articleNumber
Deprecated.The number of the referenced article.
-
articleId
public java.lang.String articleId
Deprecated.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.
-
-