1 22 package org.jboss.test.iiop.interfaces; 23 24 import java.rmi.RemoteException ; 25 import javax.ejb.EJBObject ; 26 27 31 public interface StatelessSession 32 extends EJBObject 33 { 34 public String getString() 35 throws java.rmi.RemoteException ; 36 37 public String testPrimitiveTypes(boolean flag, char c, byte b, 38 short s, int i, long l, float f, double d) 39 throws java.rmi.RemoteException ; 40 41 public String testString(String s) 42 throws java.rmi.RemoteException ; 43 44 public StatelessSession testStatelessSession(String s, StatelessSession t) 45 throws java.rmi.RemoteException ; 46 47 public java.rmi.Remote testRemote(String s, java.rmi.Remote t) 48 throws java.rmi.RemoteException ; 49 50 public Foo testSerializable(Foo foo) 51 throws java.rmi.RemoteException ; 52 53 public int[] testIntArray(int[] a) 54 throws java.rmi.RemoteException ; 55 56 public Foo[] testValueArray(Foo[] a) 57 throws java.rmi.RemoteException ; 58 59 public String testException(int i) 60 throws NegativeArgumentException, java.rmi.RemoteException ; 61 62 public Object fooValueToObject(Foo foo) 63 throws java.rmi.RemoteException ; 64 65 public Object booValueToObject(Boo boo) 66 throws java.rmi.RemoteException ; 67 68 public java.util.Vector valueArrayToVector(Foo[] a) 69 throws java.rmi.RemoteException ; 70 71 public Foo[] vectorToValueArray(java.util.Vector v) 72 throws java.rmi.RemoteException ; 73 74 public Object getException() 75 throws java.rmi.RemoteException ; 76 77 public Object getZooValue() 78 throws java.rmi.RemoteException ; 79 80 public Object [] testReferenceSharingWithinArray(Object [] a) 81 throws java.rmi.RemoteException ; 82 83 public java.util.Collection testReferenceSharingWithinCollection( 84 java.util.Collection c) 85 throws java.rmi.RemoteException ; 86 87 public org.omg.CORBA.Object testCorbaObject(org.omg.CORBA.Object obj) 88 throws java.rmi.RemoteException ; 89 90 public IdlInterface testIdlInterface(IdlInterface ref) 91 throws java.rmi.RemoteException ; 92 93 } 94 | Popular Tags |