1 package org.jacorb.test.orb.rmi; 2 3 import org.jacorb.test.orb.rmi.Boo; 4 import org.jacorb.test.orb.rmi.Foo; 5 import org.jacorb.test.orb.rmi.NegativeArgumentException; 6 7 26 27 public interface RMITestInterface 28 extends java.rmi.Remote 29 { 30 31 public String getString() 32 throws java.rmi.RemoteException ; 33 34 public String testPrimitiveTypes(boolean flag, char c, byte b, 35 short s, int i, long l, float f, double d) 36 throws java.rmi.RemoteException ; 37 38 public String testString(String s) 39 throws java.rmi.RemoteException ; 40 41 public RMITestInterface testRMITestInterface(String s, RMITestInterface t) 42 throws java.rmi.RemoteException ; 43 44 public java.rmi.Remote testRemote(String s, java.rmi.Remote t) 45 throws java.rmi.RemoteException ; 46 47 public Foo testSerializable(Foo foo) 48 throws java.rmi.RemoteException ; 49 50 public int[] testIntArray(int[] a) 51 throws java.rmi.RemoteException ; 52 53 public Foo[] testValueArray(Foo[] a) 54 throws java.rmi.RemoteException ; 55 56 public String testException(int i) 57 throws NegativeArgumentException, java.rmi.RemoteException ; 58 59 public Object fooValueToObject(Foo foo) 60 throws java.rmi.RemoteException ; 61 62 public Object booValueToObject(Boo boo) 63 throws java.rmi.RemoteException ; 64 65 public java.util.Vector valueArrayToVector(Foo[] a) 66 throws java.rmi.RemoteException ; 67 68 public Foo[] vectorToValueArray(java.util.Vector v) 69 throws java.rmi.RemoteException ; 70 71 public Object getException() 72 throws java.rmi.RemoteException ; 73 74 public Object getZooValue() 75 throws java.rmi.RemoteException ; 76 77 public Object [] testReferenceSharingWithinArray(Object [] a) 78 throws java.rmi.RemoteException ; 79 80 public java.util.Collection testReferenceSharingWithinCollection( 81 java.util.Collection c) throws java.rmi.RemoteException ; 82 83 public java.util.Vector getVectorWithObjectArrayAsElement() 84 throws java.rmi.RemoteException ; 85 86 public java.util.Vector getVectorWithVectorAsElement() 87 throws java.rmi.RemoteException ; 88 89 public java.util.Vector getVectorWithHashtableAsElement() 90 throws java.rmi.RemoteException ; 91 92 } 93 | Popular Tags |