All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.ws.api.server.DocumentAddressResolver Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/*
 * The contents of this file are subject to the terms
 * of the Common Development and Distribution License
 * (the License).  You may not use this file except in
 * compliance with the License.
 * 
 * You can obtain a copy of the license at
 * https://glassfish.dev.java.net/public/CDDLv1.0.html.
 * See the License for the specific language governing
 * permissions and limitations under the License.
 * 
 * When distributing Covered Code, include this CDDL
 * Header Notice in each file and include the License file
 * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
 * If applicable, add the following below the CDDL Header,
 * with the fields enclosed by brackets [] replaced by
 * you own identifying information:
 * "Portions Copyrighted [year] [name of copyright owner]"
 * 
 * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
 */

package com.sun.xml.ws.api.server;

import com.sun.istack.NotNull;
import com.sun.istack.Nullable;

/**
 * Resolves relative references among {@link SDDocument}s.
 *
 * 

* This interface is implemented by the caller of * {@link SDDocument#writeTo} method so * that the {@link SDDocument} can correctly produce references * to other documents. * *

* This mechanism allows the user of {@link WSEndpoint} to * assign logical URLs to each {@link SDDocument} (which is often * necessarily done in a transport-dependent way), and then * serve description documents. * * * *

Usage Example 1

*

* HTTP servlet transport chose to expose those metadata documents * to HTTP GET requests where each {@link SDDocument} is identified * by a simple query string "?ID". (HTTP servlet transport * assigns such IDs by itself.) * *

* In this nameing scheme, when {@link SDDocument} X refers to * {@link SDDocument} Y, it can put a reference as "?IDofY". * By implementing {@link DocumentAddressResolver} it can do so. * * @author Kohsuke Kawaguchi */ public interface DocumentAddressResolver { /** * Produces a relative reference from one document to another. * * @param current * The document that is being generated. * @param referenced * The document that is referenced. * @return * The reference to be put inside {@code current} to refer to * {@code referenced}. This can be a relative URL as well as * an absolute. If null is returned, then the {@link SDDocument} * will produce a "implicit reference" (for example, <xs:import> * without the @schemaLocation attribute, etc). */ @Nullable String getRelativeAddressFor(@NotNull SDDocument current, @NotNull SDDocument referenced); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy