You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by rd...@apache.org on 2009/09/17 22:53:39 UTC

svn commit: r816377 - /james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/SMTPSession.java

Author: rdonkin
Date: Thu Sep 17 20:53:39 2009
New Revision: 816377

URL: http://svn.apache.org/viewvc?rev=816377&view=rev
Log:
Convert comments to java docs

Modified:
    james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/SMTPSession.java

Modified: james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/SMTPSession.java
URL: http://svn.apache.org/viewvc/james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/SMTPSession.java?rev=816377&r1=816376&r2=816377&view=diff
==============================================================================
--- james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/SMTPSession.java (original)
+++ james/server/trunk/smtpserver-function/src/main/java/org/apache/james/smtpserver/SMTPSession.java Thu Sep 17 20:53:39 2009
@@ -31,11 +31,15 @@
 public interface SMTPSession {
 
     // Keys used to store/lookup data in the internal state hash map
-    public final static String SENDER = "SENDER_ADDRESS";     // Sender's email address
-    public final static String RCPT_LIST = "RCPT_LIST";   // The message recipients
-    public final static String CURRENT_HELO_MODE = "CURRENT_HELO_MODE"; // HELO or EHLO
-    public final static String CURRENT_HELO_NAME = "CURRENT_HELO_NAME"; 
-    public final static String SESSION_STATE_MAP = "SESSION_STATE_MAP"; // the Session state 
+    /** Sender's email address */
+    public final static String SENDER = "SENDER_ADDRESS";
+    /** The message recipients */
+    public final static String RCPT_LIST = "RCPT_LIST";  
+    /** HELO or EHLO */
+    public final static String CURRENT_HELO_MODE = "CURRENT_HELO_MODE";
+    public final static String CURRENT_HELO_NAME = "CURRENT_HELO_NAME";
+    /** the Session state */
+    public final static String SESSION_STATE_MAP = "SESSION_STATE_MAP";
 
     /**
      * Returns host name of the client



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org