1
2
3
4
5
6
7
8 package org.astrogrid.applications.beans.v1;
9
10
11
12
13
14 import org.exolab.castor.mapping.AccessMode;
15 import org.exolab.castor.xml.TypeValidator;
16 import org.exolab.castor.xml.XMLFieldDescriptor;
17 import org.exolab.castor.xml.validators.*;
18
19 /***
20 * Class HttpURLTypeDescriptor.
21 *
22 * @version $Revision: 1.8 $ $Date: 2007/01/04 16:26:34 $
23 */
24 public class HttpURLTypeDescriptor extends org.exolab.castor.xml.util.XMLClassDescriptorImpl {
25
26
27
28
29
30
31 /***
32 * Field nsPrefix
33 */
34 private java.lang.String nsPrefix;
35
36 /***
37 * Field nsURI
38 */
39 private java.lang.String nsURI;
40
41 /***
42 * Field xmlName
43 */
44 private java.lang.String xmlName;
45
46 /***
47 * Field identity
48 */
49 private org.exolab.castor.xml.XMLFieldDescriptor identity;
50
51
52
53
54
55
56 public HttpURLTypeDescriptor() {
57 super();
58 nsURI = "http://www.astrogrid.org/schema/CommonExecutionArchitectureBase/v1";
59 xmlName = "HttpURLType";
60 org.exolab.castor.xml.util.XMLFieldDescriptorImpl desc = null;
61 org.exolab.castor.xml.XMLFieldHandler handler = null;
62 org.exolab.castor.xml.FieldValidator fieldValidator = null;
63
64 desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(java.lang.String.class, "_content", "PCDATA", org.exolab.castor.xml.NodeType.Text);
65 desc.setImmutable(true);
66 handler = (new org.exolab.castor.xml.XMLFieldHandler() {
67 public java.lang.Object getValue( java.lang.Object object )
68 throws IllegalStateException
69 {
70 HttpURLType target = (HttpURLType) object;
71 return target.getContent();
72 }
73 public void setValue( java.lang.Object object, java.lang.Object value)
74 throws IllegalStateException, IllegalArgumentException
75 {
76 try {
77 HttpURLType target = (HttpURLType) object;
78 target.setContent( (java.lang.String) value);
79 }
80 catch (java.lang.Exception ex) {
81 throw new IllegalStateException(ex.toString());
82 }
83 }
84 public java.lang.Object newInstance( java.lang.Object parent ) {
85 return null;
86 }
87 } );
88 desc.setHandler(handler);
89 addFieldDescriptor(desc);
90
91
92 fieldValidator = new org.exolab.castor.xml.FieldValidator();
93 {
94 StringValidator typeValidator = new StringValidator();
95 typeValidator.setWhiteSpace("preserve");
96 fieldValidator.setValidator(typeValidator);
97 }
98 desc.setValidator(fieldValidator);
99
100
101
102 desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(org.astrogrid.applications.beans.v1.types.HttpMethodType.class, "_method", "method", org.exolab.castor.xml.NodeType.Attribute);
103 handler = (new org.exolab.castor.xml.XMLFieldHandler() {
104 public java.lang.Object getValue( java.lang.Object object )
105 throws IllegalStateException
106 {
107 HttpURLType target = (HttpURLType) object;
108 return target.getMethod();
109 }
110 public void setValue( java.lang.Object object, java.lang.Object value)
111 throws IllegalStateException, IllegalArgumentException
112 {
113 try {
114 HttpURLType target = (HttpURLType) object;
115 target.setMethod( (org.astrogrid.applications.beans.v1.types.HttpMethodType) value);
116 }
117 catch (java.lang.Exception ex) {
118 throw new IllegalStateException(ex.toString());
119 }
120 }
121 public java.lang.Object newInstance( java.lang.Object parent ) {
122 return null;
123 }
124 } );
125 desc.setHandler( new org.exolab.castor.xml.handlers.EnumFieldHandler(org.astrogrid.applications.beans.v1.types.HttpMethodType.class, handler));
126 desc.setImmutable(true);
127 addFieldDescriptor(desc);
128
129
130 fieldValidator = new org.exolab.castor.xml.FieldValidator();
131 {
132 }
133 desc.setValidator(fieldValidator);
134
135
136 }
137
138
139
140
141
142
143 /***
144 * Method getAccessMode
145 */
146 public org.exolab.castor.mapping.AccessMode getAccessMode()
147 {
148 return null;
149 }
150
151 /***
152 * Method getExtends
153 */
154 public org.exolab.castor.mapping.ClassDescriptor getExtends()
155 {
156 return null;
157 }
158
159 /***
160 * Method getIdentity
161 */
162 public org.exolab.castor.mapping.FieldDescriptor getIdentity()
163 {
164 return identity;
165 }
166
167 /***
168 * Method getJavaClass
169 */
170 public java.lang.Class getJavaClass()
171 {
172 return org.astrogrid.applications.beans.v1.HttpURLType.class;
173 }
174
175 /***
176 * Method getNameSpacePrefix
177 */
178 public java.lang.String getNameSpacePrefix()
179 {
180 return nsPrefix;
181 }
182
183 /***
184 * Method getNameSpaceURI
185 */
186 public java.lang.String getNameSpaceURI()
187 {
188 return nsURI;
189 }
190
191 /***
192 * Method getValidator
193 */
194 public org.exolab.castor.xml.TypeValidator getValidator()
195 {
196 return this;
197 }
198
199 /***
200 * Method getXMLName
201 */
202 public java.lang.String getXMLName()
203 {
204 return xmlName;
205 }
206
207 }