001: /**
002: * Licensed to the Apache Software Foundation (ASF) under one or more
003: * contributor license agreements. See the NOTICE file distributed with
004: * this work for additional information regarding copyright ownership.
005: * The ASF licenses this file to You under the Apache License, Version 2.0
006: * (the "License"); you may not use this file except in compliance with
007: * the License. You may obtain a copy of the License at
008: *
009: * http://www.apache.org/licenses/LICENSE-2.0
010: *
011: * Unless required by applicable law or agreed to in writing, software
012: * distributed under the License is distributed on an "AS IS" BASIS,
013: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014: * See the License for the specific language governing permissions and
015: * limitations under the License.
016: */package org.apache.openejb.server.axis;
017:
018: public class EchoStruct {
019: private int intVal;
020: private double doubleVal;
021: private byte[] bytesVal;
022: private float floatVal;
023: private long longVal;
024: private short shortVal;
025: private boolean boolaenVal;
026:
027: private String strVal;
028:
029: private int[] intaVal;
030: private double[] doubleaVal;
031: private byte[][] bytesaVal;
032: private float[] floataVal;
033: private long[] longaVal;
034: private short[] shortaVal;
035: private boolean[] boolaenaVal;
036:
037: private String[] straVal;
038:
039: private SmallEchoStruct sturctVal;
040: private SmallEchoStruct sturctaVal;
041:
042: public boolean[] getBoolaenaVal() {
043: return boolaenaVal;
044: }
045:
046: public boolean isBoolaenVal() {
047: return boolaenVal;
048: }
049:
050: public byte[][] getBytesaVal() {
051: return bytesaVal;
052: }
053:
054: public byte[] getBytesVal() {
055: return bytesVal;
056: }
057:
058: public double[] getDoubleaVal() {
059: return doubleaVal;
060: }
061:
062: public double getDoubleVal() {
063: return doubleVal;
064: }
065:
066: public float[] getFloataVal() {
067: return floataVal;
068: }
069:
070: public float getFloatVal() {
071: return floatVal;
072: }
073:
074: public int[] getIntaVal() {
075: return intaVal;
076: }
077:
078: public int getIntVal() {
079: return intVal;
080: }
081:
082: public long[] getLongaVal() {
083: return longaVal;
084: }
085:
086: public long getLongVal() {
087: return longVal;
088: }
089:
090: public short[] getShortaVal() {
091: return shortaVal;
092: }
093:
094: public short getShortVal() {
095: return shortVal;
096: }
097:
098: public String[] getStraVal() {
099: return straVal;
100: }
101:
102: public String getStrVal() {
103: return strVal;
104: }
105:
106: public void setBoolaenaVal(boolean[] bs) {
107: boolaenaVal = bs;
108: }
109:
110: public void setBoolaenVal(boolean b) {
111: boolaenVal = b;
112: }
113:
114: public void setBytesaVal(byte[][] bs) {
115: bytesaVal = bs;
116: }
117:
118: public void setBytesVal(byte[] bs) {
119: bytesVal = bs;
120: }
121:
122: public void setDoubleaVal(double[] ds) {
123: doubleaVal = ds;
124: }
125:
126: public void setDoubleVal(double d) {
127: doubleVal = d;
128: }
129:
130: public void setFloataVal(float[] fs) {
131: floataVal = fs;
132: }
133:
134: public void setFloatVal(float f) {
135: floatVal = f;
136: }
137:
138: public void setIntaVal(int[] is) {
139: intaVal = is;
140: }
141:
142: public void setIntVal(int i) {
143: intVal = i;
144: }
145:
146: public void setLongaVal(long[] ls) {
147: longaVal = ls;
148: }
149:
150: public void setLongVal(long l) {
151: longVal = l;
152: }
153:
154: public void setShortaVal(short[] ses) {
155: shortaVal = ses;
156: }
157:
158: public void setShortVal(short s) {
159: shortVal = s;
160: }
161:
162: public void setStraVal(String[] strings) {
163: straVal = strings;
164: }
165:
166: public void setStrVal(String string) {
167: strVal = string;
168: }
169:
170: public SmallEchoStruct getSturctaVal() {
171: return sturctaVal;
172: }
173:
174: public SmallEchoStruct getSturctVal() {
175: return sturctVal;
176: }
177:
178: public void setSturctaVal(SmallEchoStruct struct) {
179: sturctaVal = struct;
180: }
181:
182: public void setSturctVal(SmallEchoStruct struct) {
183: sturctVal = struct;
184: }
185: }
|