01: // This class was generated by the JAXRPC SI, do not edit.
02: // Contents subject to change without notice.
03: // JAX-RPC Standard Implementation (1.1.3, build R1)
04: // Generated source version: 1.1.3
05:
06: package org.jboss.test.wsrp.core;
07:
08: import java.io.Serializable;
09:
10: public class Extension implements Serializable {
11: /** The serialVersionUID */
12: private static final long serialVersionUID = -1197474564664405762L;
13: protected javax.xml.soap.SOAPElement _any;
14:
15: public Extension() {
16: }
17:
18: public Extension(javax.xml.soap.SOAPElement _any) {
19: this ._any = _any;
20: }
21:
22: public javax.xml.soap.SOAPElement get_any() {
23: return _any;
24: }
25:
26: public void set_any(javax.xml.soap.SOAPElement _any) {
27: this._any = _any;
28: }
29: }
|