325N/A/*
325N/A * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
325N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
325N/A *
325N/A * This code is free software; you can redistribute it and/or modify it
325N/A * under the terms of the GNU General Public License version 2 only, as
325N/A * published by the Free Software Foundation. Oracle designates this
325N/A * particular file as subject to the "Classpath" exception as provided
325N/A * by Oracle in the LICENSE file that accompanied this code.
325N/A *
325N/A * This code is distributed in the hope that it will be useful, but WITHOUT
325N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
325N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
325N/A * version 2 for more details (a copy is included in the LICENSE file that
325N/A * accompanied this code).
325N/A *
325N/A * You should have received a copy of the GNU General Public License version
325N/A * 2 along with this work; if not, write to the Free Software Foundation,
325N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
325N/A *
325N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
325N/A * or visit www.oracle.com if you need additional information or have any
325N/A * questions.
325N/A */
325N/A
325N/Apackage com.sun.xml.internal.ws.wsdl.writer;
325N/A
325N/Aimport com.sun.istack.internal.Nullable;
325N/Aimport com.sun.xml.internal.ws.api.server.SDDocument;
325N/A
325N/A/**
325N/A * Resolves relative references among the metadata(WSDL, schema)
325N/A * documents.
325N/A *
325N/A * <p>
325N/A * This interface is implemented by the caller of
325N/A * {@link SDDocument#writeTo} method so that the {@link SDDocument} can
325N/A * correctly produce references to other documents.
325N/A *
325N/A * <h2>Usage Example 1</h2>
325N/A * <p>
325N/A * Say: http://localhost/hello?wsdl has reference to
325N/A * <p>
325N/A * &lt;xsd:import namespace="urn:test:types" schemaLocation="http://localhost/hello?xsd=1"/>
325N/A *
325N/A * <p>
325N/A * Using this class, it is possible to write A.wsdl to a local filesystem with
325N/A * a local file schema import.
325N/A * <p>
325N/A * &lt;xsd:import namespace="urn:test:types" schemaLocation="hello.xsd"/>
325N/A *
325N/A * @author Jitendra Kotamraju
325N/A */
325N/Apublic interface DocumentLocationResolver {
325N/A /**
325N/A * Produces a relative reference from one document to another.
325N/A *
325N/A * @param namespaceURI
325N/A * The namespace urI for the referenced document.
325N/A * for e.g. wsdl:import/@namespace, xsd:import/@namespace
325N/A * @param systemId
325N/A * The location value for the referenced document.
325N/A * for e.g. wsdl:import/@location, xsd:import/@schemaLocation
325N/A * @return
325N/A * The reference to be put inside {@code current} to refer to
325N/A * {@code referenced}. This can be a relative URL as well as
325N/A * an absolute. If null is returned, then the document
325N/A * will produce a "implicit reference" (for example, &lt;xs:import>
325N/A * without the @schemaLocation attribute, etc).
325N/A */
325N/A @Nullable String getLocationFor(String namespaceURI, String systemId);
325N/A}