01: /*
02: * JBoss, Home of Professional Open Source.
03: * Copyright 2006, Red Hat Middleware LLC, and individual contributors
04: * as indicated by the @author tags. See the copyright.txt file in the
05: * distribution for a full listing of individual contributors.
06: *
07: * This is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU Lesser General Public License as
09: * published by the Free Software Foundation; either version 2.1 of
10: * the License, or (at your option) any later version.
11: *
12: * This software is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this software; if not, write to the Free
19: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21: */
22: package org.jboss.iiop.test;
23:
24: import java.rmi.RemoteException;
25:
26: public class TestImpl implements Test {
27: public Test aa1() throws RemoteException {
28: return null;
29: }
30:
31: public TestValue aa2() throws RemoteException {
32: return null;
33: }
34:
35: public Object aa3() throws RemoteException {
36: return null;
37: }
38:
39: public java.io.Serializable aa4() throws RemoteException {
40: return null;
41: }
42:
43: public java.io.Externalizable aa5() throws RemoteException {
44: return null;
45: }
46:
47: public java.rmi.Remote aa6() throws RemoteException {
48: return null;
49: }
50:
51: public String jack(String arg) throws RemoteException {
52: return "jack:" + arg;
53: }
54:
55: public String Jack(String arg) throws RemoteException {
56: return "Jack:" + arg;
57: }
58:
59: public String jAcK(String arg) throws RemoteException {
60: return "jAcK:" + arg;
61: }
62:
63: /**
64: * Accessor of type Object
65: */
66: public Object getObjectValue() throws RemoteException {
67: return null;
68: }
69:
70: /**
71: * Gets the current value of the autonumber.
72: */
73: public int getValue() throws RemoteException {
74: return 0;
75: }
76:
77: /**
78: * Sets the current value of the autonumber.
79: */
80: public void setValue(int value) throws RemoteException {
81: }
82:
83: /**
84: * A test operation.
85: */
86: public TestValue[][] addNumbers(int[] numbers, boolean b, char c,
87: byte by, short s, int i, long l, float f, double d,
88: java.rmi.Remote rem, TestValue val, Test intf, String str,
89: Object obj, Class cls, java.io.Serializable ser,
90: java.io.Externalizable ext) throws TestException,
91: RemoteException {
92: return null;
93: }
94: }
|