01: package org.objectweb.celtix.tools.extensions.xmlformat;
02:
03: import java.io.Serializable;
04:
05: import javax.wsdl.extensions.ExtensibilityElement;
06: import javax.xml.namespace.QName;
07:
08: import org.w3c.dom.Element;
09:
10: public class XMLHttpAddress implements ExtensibilityElement,
11: Serializable {
12:
13: private boolean required;
14: private QName elementType;
15: private Element element;
16: private String documentBaseURI;
17:
18: private String location;
19:
20: public void setRequired(Boolean r) {
21: this .required = r;
22: }
23:
24: public Boolean getRequired() {
25: return required;
26: }
27:
28: public void setElementType(QName elemType) {
29: this .elementType = elemType;
30: }
31:
32: public QName getElementType() {
33: return elementType;
34: }
35:
36: public String getDocumentBaseURI() {
37: return documentBaseURI;
38: }
39:
40: public void setDocumentBaseURI(String pDocumentBaseURI) {
41: this .documentBaseURI = pDocumentBaseURI;
42: }
43:
44: public Element getElement() {
45: return element;
46: }
47:
48: public void setElement(Element pElement) {
49: this .element = pElement;
50: }
51:
52: public String getLocation() {
53: return location;
54: }
55:
56: public void setLocation(String pLocation) {
57: this.location = pLocation;
58: }
59: }
|