User: starksm 
  Date: 01/06/12 21:55:50

  Modified:    src/main/org/jboss/test/security/interfaces Entity.java
  Added:       src/main/org/jboss/test/security/interfaces IOSession.java
                        IOSessionHome.java
  Log:
  Initial tests of the custom security proxy layer
  
  Revision  Changes    Path
  1.2       +2 -2      
jbosstest/src/main/org/jboss/test/security/interfaces/Entity.java
  
  Index: Entity.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jbosstest/src/main/org/jboss/test/security/interfaces/Entity.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Entity.java       2001/03/05 10:11:03     1.1
  +++ Entity.java       2001/06/13 04:55:50     1.2
  @@ -5,8 +5,8 @@
   
   /**
   
  -@author [EMAIL PROTECTED]
  -@version $Revision: 1.1 $
  +@author [EMAIL PROTECTED]
  +@version $Revision: 1.2 $
   */
   public interface Entity extends EJBObject
   {
  
  
  
  1.1                  
jbosstest/src/main/org/jboss/test/security/interfaces/IOSession.java
  
  Index: IOSession.java
  ===================================================================
  package org.jboss.test.security.interfaces;
  
  import java.io.IOException;
  import java.rmi.RemoteException;
  import javax.ejb.EJBObject;
  
  public interface IOSession extends EJBObject
  {
      /** A method that returns its arg */
      public String read(String path) throws IOException, RemoteException;
      public void write(String path) throws IOException, RemoteException;
  }
  
  
  
  1.1                  
jbosstest/src/main/org/jboss/test/security/interfaces/IOSessionHome.java
  
  Index: IOSessionHome.java
  ===================================================================
  package org.jboss.test.security.interfaces;
  
  import javax.ejb.*;
  import java.rmi.*;
  
  public interface IOSessionHome extends EJBHome
  {
      public IOSession create() throws RemoteException, CreateException;
  }
  
  
  

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

Reply via email to