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 ResetProperty implements Serializable {
11: /** The serialVersionUID */
12: private static final long serialVersionUID = -4648037678127722097L;
13: protected java.lang.String name;
14:
15: public ResetProperty() {
16: }
17:
18: public ResetProperty(java.lang.String name) {
19: this .name = name;
20: }
21:
22: public java.lang.String getName() {
23: return name;
24: }
25:
26: public void setName(java.lang.String name) {
27: this.name = name;
28: }
29: }
|