diff -r 8c0b6bccfe47 -r 0989ad8c0860 src/share/jaxws_classes/com/oracle/webservices/internal/api/databinding/WSDLResolver.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/share/jaxws_classes/com/oracle/webservices/internal/api/databinding/WSDLResolver.java Tue Apr 09 14:51:13 2013 +0100 @@ -0,0 +1,88 @@ +/* + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. + * + * Copyright (c) 2012 Oracle and/or its affiliates. All rights reserved. + * + * The contents of this file are subject to the terms of either the GNU + * General Public License Version 2 only ("GPL") or the Common Development + * and Distribution License("CDDL") (collectively, the "License"). You + * may not use this file except in compliance with the License. You can + * obtain a copy of the License at + * http://glassfish.java.net/public/CDDL+GPL_1_1.html + * or packager/legal/LICENSE.txt. See the License for the specific + * language governing permissions and limitations under the License. + * + * When distributing the software, include this License Header Notice in each + * file and include the License file at packager/legal/LICENSE.txt. + * + * GPL Classpath Exception: + * Oracle designates this particular file as subject to the "Classpath" + * exception as provided by Oracle in the GPL Version 2 section of the License + * file that accompanied this code. + * + * Modifications: + * If applicable, add the following below the License Header, with the fields + * enclosed by brackets [] replaced by your own identifying information: + * "Portions Copyright [year] [name of copyright owner]" + * + * Contributor(s): + * If you wish your version of this file to be governed by only the CDDL or + * only the GPL Version 2, indicate your decision by adding "[Contributor] + * elects to include this software in this distribution under the [CDDL or GPL + * Version 2] license." If you don't indicate a single choice of license, a + * recipient has the option to distribute your version of this file under + * either the CDDL, the GPL Version 2 or to extend the choice of license to + * its licensees as provided above. However, if you add GPL Version 2 code + * and therefore, elected the GPL Version 2 license, then the option applies + * only if the new code is made subject to such option by the copyright + * holder. + */ + +package com.oracle.webservices.internal.api.databinding; + +import javax.xml.transform.Result; +import javax.xml.ws.Holder; + +/** + * WSDLResolver is used by WSDLGenerator while generating WSDL and its associated + * documents. It is used to control what documents need to be generated and what + * documents need to be picked from metadata. If endpont's document metadata + * already contains some documents, their systemids may be used for wsdl:import, + * and schema:import. The suggested filenames are relative urls(for e.g: EchoSchema1.xsd) + * The Result object systemids are also relative urls(for e.g: AbsWsdl.wsdl). + * + * @author Jitendra Kotamraju + */ +public interface WSDLResolver { + /** + * Create a Result object into which concrete WSDL is to be generated. + * + * @return Result for the concrete WSDL + */ + public Result getWSDL(String suggestedFilename); + + /** + * Create a Result object into which abstract WSDL is to be generated. If the the + * abstract WSDL is already in metadata, it is not generated. + * + * Update filename if the suggested filename need to be changed in wsdl:import. + * This needs to be done if the metadata contains abstract WSDL, and that systemid + * needs to be reflected in concrete WSDL's wsdl:import + * + * @return null if abstract WSDL need not be generated + */ + public Result getAbstractWSDL(Holder filename); + + /** + * Create a Result object into which schema doc is to be generated. Typically if + * there is a schema doc for namespace in metadata, then it is not generated. + * + * Update filename if the suggested filename need to be changed in xsd:import. This + * needs to be done if the metadata contains the document, and that systemid + * needs to be reflected in some other document's xsd:import + * + * @return null if schema need not be generated + */ + public Result getSchemaOutput(String namespace, Holder filename); + +}