User: starksm 
  Date: 02/03/14 11:31:00

  Modified:    src/main/org/jboss/test SimpleSRPServer.java
                        TestProtocol.java
  Log:
  Update for changes to the SRPServerInterface
  
  Revision  Changes    Path
  1.5       +8 -2      jbosssx/src/main/org/jboss/test/SimpleSRPServer.java
  
  Index: SimpleSRPServer.java
  ===================================================================
  RCS file: /cvsroot/jboss/jbosssx/src/main/org/jboss/test/SimpleSRPServer.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SimpleSRPServer.java      8 Mar 2002 05:55:49 -0000       1.4
  +++ SimpleSRPServer.java      14 Mar 2002 19:30:59 -0000      1.5
  @@ -16,7 +16,7 @@
    any given username to the password and salt provided to its constructor.
    
    @author [EMAIL PROTECTED]
  - @version $Revision: 1.4 $
  + @version $Revision: 1.5 $
    */
   public class SimpleSRPServer implements SRPServerInterface
   {
  @@ -57,5 +57,11 @@
            throw new SecurityException("Failed to verify M1");
         return session.getServerResponse();
      }
  -   
  +  
  +   /** Close the SRP session for the given username.
  +    */
  +   public void close(String username) throws SecurityException, RemoteException
  +   {
  +   }
  +
   }
  
  
  
  1.6       +8 -1      jbosssx/src/main/org/jboss/test/TestProtocol.java
  
  Index: TestProtocol.java
  ===================================================================
  RCS file: /cvsroot/jboss/jbosssx/src/main/org/jboss/test/TestProtocol.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- TestProtocol.java 8 Mar 2002 05:55:49 -0000       1.5
  +++ TestProtocol.java 14 Mar 2002 19:30:59 -0000      1.6
  @@ -30,7 +30,7 @@
   /** Test of the SRP protocol msg exchange sequence.
    
    @author [EMAIL PROTECTED]
  - @version $Revision: 1.5 $
  + @version $Revision: 1.6 $
    */
   public class TestProtocol extends junit.framework.TestCase
   {
  @@ -91,6 +91,13 @@
               throw new SecurityException("Failed to verify M1");
            return session.getServerResponse();
         }
  +      
  +      /** Close the SRP session for the given username.
  +       */
  +      public void close(String username) throws SecurityException, RemoteException
  +      {
  +      }
  +
      }
      
      public TestProtocol(String name)
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to