org.apache.commons.net.nntp
Class ArticlePointer

java.lang.Object
  extended by org.apache.commons.net.nntp.ArticlePointer

Deprecated. 3.0 use ArticleInfo instead

@Deprecated
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.

See Also:
NNTPClient

Field Summary
 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.
 int articleNumber
          Deprecated. The number of the referenced article.
 
Constructor Summary
ArticlePointer()
          Deprecated.  
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

articleNumber

public int articleNumber
Deprecated. 
The number of the referenced article.


articleId

public 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.

Constructor Detail

ArticlePointer

public ArticlePointer()
Deprecated. 


Copyright © 2001-2012 The Apache Software Foundation. All Rights Reserved.