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 RegistrationState implements Serializable {
11: /** The serialVersionUID */
12: private static final long serialVersionUID = 8109782856632872891L;
13: protected byte[] registrationState;
14: protected Extension[] extensions;
15:
16: public RegistrationState() {
17: }
18:
19: public RegistrationState(byte[] registrationState,
20: Extension[] extensions) {
21: this .registrationState = registrationState;
22: this .extensions = extensions;
23: }
24:
25: public byte[] getRegistrationState() {
26: return registrationState;
27: }
28:
29: public void setRegistrationState(byte[] registrationState) {
30: this .registrationState = registrationState;
31: }
32:
33: public Extension[] getExtensions() {
34: return extensions;
35: }
36:
37: public void setExtensions(Extension[] extensions) {
38: this.extensions = extensions;
39: }
40: }
|