1 package org.apache.geronimo.axis.testData.echosample;
2
3 public class EchoBean implements Echo {
4 public void ejbCreate() {
5 }
6
7 public void echoVoid() {
8 }
9
10 public int echoInt(int in) {
11 return in;
12 }
13
14 public double echoDouble(double in) {
15 return in;
16 }
17
18 public float echoFloat(float in) {
19 return in;
20 }
21
22 public boolean echoBoolean(boolean in) {
23 return in;
24 }
25
26 public String echoString(String in) {
27 return in;
28 }
29
30 public short echoShort(short in) {
31 return in;
32 }
33
34 public long echoLong(long in) {
35 return in;
36 }
37
38 public char echoChar(char in) {
39 return in;
40 }
41
42 public byte[] echoBytes(byte[] in) {
43 return in;
44 }
45
46 public void echoEvoid() {
47 }
48
49 public EchoStruct echoStruct(EchoStruct in) {
50 return in;
51 }
52 // public EchoStruct[] echoAStruct(EchoStruct[] in){
53 // return in;
54 // }
55
56 public void ejbActivate() throws javax.ejb.EJBException, java.rmi.RemoteException {
57 }
58
59 public void ejbPassivate() throws javax.ejb.EJBException, java.rmi.RemoteException {
60 }
61
62 public void ejbRemove() throws javax.ejb.EJBException, java.rmi.RemoteException {
63 }
64
65 public void setSessionContext(javax.ejb.SessionContext arg0) throws javax.ejb.EJBException, java.rmi.RemoteException {
66 }
67 }