01: /*
02: * Portions Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
03: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
04: *
05: * This code is free software; you can redistribute it and/or modify it
06: * under the terms of the GNU General Public License version 2 only, as
07: * published by the Free Software Foundation. Sun designates this
08: * particular file as subject to the "Classpath" exception as provided
09: * by Sun in the LICENSE file that accompanied this code.
10: *
11: * This code is distributed in the hope that it will be useful, but WITHOUT
12: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14: * version 2 for more details (a copy is included in the LICENSE file that
15: * accompanied this code).
16: *
17: * You should have received a copy of the GNU General Public License version
18: * 2 along with this work; if not, write to the Free Software Foundation,
19: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20: *
21: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22: * CA 95054 USA or visit www.sun.com if you need additional information or
23: * have any questions.
24: */
25:
26: package com.sun.tools.internal.ws.processor.config;
27:
28: import java.util.*;
29:
30: import org.w3c.dom.Element;
31: import org.w3c.dom.Document;
32: import org.xml.sax.InputSource;
33:
34: import com.sun.tools.internal.ws.processor.modeler.Modeler;
35: import com.sun.tools.internal.ws.util.JAXWSClassFactory;
36:
37: /**
38: *
39: * @author WS Development Team
40: */
41: public class WSDLModelInfo extends ModelInfo {
42:
43: public WSDLModelInfo() {
44: }
45:
46: protected Modeler getModeler(Properties options) {
47: return JAXWSClassFactory.newInstance().createWSDLModeler(this ,
48: options);
49: }
50:
51: public String getLocation() {
52: return _location;
53: }
54:
55: public void setLocation(String s) {
56: _location = s;
57: }
58:
59: public Map<String, Document> getJAXWSBindings() {
60: return _jaxwsBindings;
61: }
62:
63: public void putJAXWSBindings(String systemId, Document binding) {
64: _jaxwsBindings.put(systemId, binding);
65: }
66:
67: public Set<InputSource> getJAXBBindings() {
68: return _jaxbBindings;
69: }
70:
71: public void addJAXBBIndings(InputSource jaxbBinding) {
72: _jaxbBindings.add(jaxbBinding);
73: }
74:
75: public void setHandlerConfig(Element handlerConfig) {
76: this .handlerConfig = handlerConfig;
77: }
78:
79: public Element getHandlerConfig() {
80: return handlerConfig;
81: }
82:
83: private Element handlerConfig;
84:
85: private String _location;
86:
87: //external jaxws:bindings elements
88: private Map<String, Document> _jaxwsBindings = new HashMap<String, Document>();
89:
90: //we need an array of jaxb:binding elements, they are children of jaxws:bindings
91: //and could come from an external customization file or wsdl.
92: private Set<InputSource> _jaxbBindings = new HashSet<InputSource>();
93: }
|