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

com.sun.xml.ws.api.client.ClientPipelineHook Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/*
 * Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

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

import com.sun.istack.NotNull;
import com.sun.xml.ws.api.pipe.Pipe;
import com.sun.xml.ws.api.pipe.ClientPipeAssemblerContext;

/**
 * Allow the container (primarily Glassfish) to inject
 * their own pipes into the client pipeline.
 *
 * 

* This interface has a rather ad-hoc set of methods, because * we didn't want to define an autonomous pipe-assembly process. * (We thought this is a smaller evil compared to that.) * *

* JAX-WS obtains this through {@link com.sun.xml.ws.api.server.Container#getSPI(Class)}. * * @author Jitendra Kotamraju */ public abstract class ClientPipelineHook { /** * Called during the pipeline construction process once to allow a container * to register a pipe for security. * * This pipe will be injected to a point very close to the transport, allowing * it to do some security operations. * * @param ctxt * Represents abstraction of SEI, WSDL abstraction etc. Context can be used * whether add a new pipe to the head or not. * * @param tail * Head of the partially constructed pipeline. If the implementation * wishes to add new pipes, it should do so by extending * {@link com.sun.xml.ws.api.pipe.helper.AbstractFilterPipeImpl} and making sure that this {@link com.sun.xml.ws.api.pipe.Pipe} * eventually processes messages. * * @return * The default implementation just returns {@code tail}, which means * no additional pipe is inserted. If the implementation adds * new pipes, return the new head pipe. */ public @NotNull Pipe createSecurityPipe(ClientPipeAssemblerContext ctxt, @NotNull Pipe tail) { return tail; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy