You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2008/09/20 11:26:09 UTC

svn commit: r697339 - /geronimo/gshell/trunk/gshell-remote/gshell-remote-common/src/main/java/org/apache/geronimo/gshell/remote/message/ConnectMessage.java

Author: jdillon
Date: Sat Sep 20 02:26:09 2008
New Revision: 697339

URL: http://svn.apache.org/viewvc?rev=697339&view=rev
Log:
Javadocs

Modified:
    geronimo/gshell/trunk/gshell-remote/gshell-remote-common/src/main/java/org/apache/geronimo/gshell/remote/message/ConnectMessage.java

Modified: geronimo/gshell/trunk/gshell-remote/gshell-remote-common/src/main/java/org/apache/geronimo/gshell/remote/message/ConnectMessage.java
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-remote/gshell-remote-common/src/main/java/org/apache/geronimo/gshell/remote/message/ConnectMessage.java?rev=697339&r1=697338&r2=697339&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-remote/gshell-remote-common/src/main/java/org/apache/geronimo/gshell/remote/message/ConnectMessage.java (original)
+++ geronimo/gshell/trunk/gshell-remote/gshell-remote-common/src/main/java/org/apache/geronimo/gshell/remote/message/ConnectMessage.java Sat Sep 20 02:26:09 2008
@@ -22,19 +22,13 @@
 import java.security.PublicKey;
 
 /**
- * ???
+ * Message sent from client to server to initiate a remote-shell connection.
  *
  * @version $Rev$ $Date$
  */
 public class ConnectMessage
     extends RshMessage
 {
-    //
-    // FIXME: Need to customize serialization of this puppy... which means we need to become CryptoContextAware too
-    //
-    //        https://issues.apache.org/jira/browse/GSHELL-118
-    //
-
     private final PublicKey publicKey;
 
     public ConnectMessage(final PublicKey publicKey) {
@@ -45,6 +39,9 @@
         return publicKey;
     }
 
+    /**
+     * Message sent from server to client to complete a remote-shell connection.
+     */
     public static class Result
         extends ConnectMessage
     {