aoqi@0: /* aoqi@0: * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. aoqi@0: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. aoqi@0: * aoqi@0: * This code is free software; you can redistribute it and/or modify it aoqi@0: * under the terms of the GNU General Public License version 2 only, as aoqi@0: * published by the Free Software Foundation. Oracle designates this aoqi@0: * particular file as subject to the "Classpath" exception as provided aoqi@0: * by Oracle in the LICENSE file that accompanied this code. aoqi@0: * aoqi@0: * This code is distributed in the hope that it will be useful, but WITHOUT aoqi@0: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or aoqi@0: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License aoqi@0: * version 2 for more details (a copy is included in the LICENSE file that aoqi@0: * accompanied this code). aoqi@0: * aoqi@0: * You should have received a copy of the GNU General Public License version aoqi@0: * 2 along with this work; if not, write to the Free Software Foundation, aoqi@0: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. aoqi@0: * aoqi@0: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA aoqi@0: * or visit www.oracle.com if you need additional information or have any aoqi@0: * questions. aoqi@0: */ aoqi@0: aoqi@0: package com.sun.xml.internal.ws.api.wsdl.writer; aoqi@0: aoqi@0: import com.sun.xml.internal.txw2.TypedXmlWriter; aoqi@0: import com.sun.xml.internal.ws.api.model.SEIModel; aoqi@0: import com.sun.xml.internal.ws.api.WSBinding; aoqi@0: import com.sun.xml.internal.ws.api.server.Container; aoqi@0: import com.sun.istack.internal.NotNull; aoqi@0: import com.sun.istack.internal.Nullable; aoqi@0: aoqi@0: /** aoqi@0: * WSDLGeneatorContext provides a context for the WSDLGeneratorExtension and is used in aoqi@0: * {@link WSDLGeneratorExtension#start(WSDLGenExtnContext)}. This context consists of TXW, {@link SEIModel}, aoqi@0: * {@link WSBinding}, {@link Container}, and implementation class. WSDL extensions are used to aoqi@0: * extend the generated WSDL by adding implementation specific extensions. aoqi@0: * aoqi@0: * @author Jitendra Kotamraju aoqi@0: */ aoqi@0: public class WSDLGenExtnContext { aoqi@0: private final TypedXmlWriter root; aoqi@0: private final SEIModel model; aoqi@0: private final WSBinding binding; aoqi@0: private final Container container; aoqi@0: private final Class endpointClass; aoqi@0: aoqi@0: /** aoqi@0: * Constructs WSDL Generation context for the extensions aoqi@0: * aoqi@0: * @param root This is the root element of the generated WSDL. aoqi@0: * @param model WSDL is being generated from this {@link SEIModel}. aoqi@0: * @param binding The binding for which we generate WSDL. the binding {@link WSBinding} represents a particular aoqi@0: * configuration of JAXWS. This can be typically be overriden by aoqi@0: * @param container The entry point to the external environment. aoqi@0: * If this extension is used at the runtime to generate WSDL, you get a {@link Container} aoqi@0: * that was given to {@link com.sun.xml.internal.ws.api.server.WSEndpoint#create}. aoqi@0: */ aoqi@0: public WSDLGenExtnContext(@NotNull TypedXmlWriter root, @NotNull SEIModel model, @NotNull WSBinding binding, aoqi@0: @Nullable Container container, @NotNull Class endpointClass) { aoqi@0: this.root = root; aoqi@0: this.model = model; aoqi@0: this.binding = binding; aoqi@0: this.container = container; aoqi@0: this.endpointClass = endpointClass; aoqi@0: } aoqi@0: aoqi@0: public TypedXmlWriter getRoot() { aoqi@0: return root; aoqi@0: } aoqi@0: aoqi@0: public SEIModel getModel() { aoqi@0: return model; aoqi@0: } aoqi@0: aoqi@0: public WSBinding getBinding() { aoqi@0: return binding; aoqi@0: } aoqi@0: aoqi@0: public Container getContainer() { aoqi@0: return container; aoqi@0: } aoqi@0: aoqi@0: public Class getEndpointClass() { aoqi@0: return endpointClass; aoqi@0: } aoqi@0: aoqi@0: }