org.glassfish.webservices.JAXWSContainer Maven / Gradle / Ivy
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-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
* https://glassfish.dev.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.
*/
// Portions Copyright [2016-2021] [Payara Foundation and/or its affiliates]
package org.glassfish.webservices;
import com.sun.xml.ws.api.server.Container;
import com.sun.xml.ws.api.server.ResourceInjector;
import com.sun.xml.ws.api.server.Module;
import jakarta.servlet.ServletContext;
import com.sun.xml.ws.transport.http.servlet.ServletAdapter;
import com.sun.enterprise.deployment.WebServiceEndpoint;
import com.sun.xml.ws.api.server.BoundEndpoint;
import org.glassfish.hk2.api.ServiceLocator;
import org.glassfish.internal.api.Globals;
import com.sun.xml.ws.api.server.ServerPipelineHook;
import java.util.ArrayList;
import java.util.List;
public class JAXWSContainer extends Container {
private final ServletContext servletContext;
private final WebServiceEndpoint endpoint;
private final JAXWSServletModule module;
public JAXWSContainer(ServletContext servletContext,
WebServiceEndpoint ep) {
this.servletContext = servletContext;
this.endpoint = ep;
if (servletContext != null) {
this.module = JAXWSServletModule
.getServletModule(servletContext.getContextPath());
} else {
this.module = null;
}
}
public void addEndpoint( ServletAdapter adapter) {
if (module != null) {
module.addEndpoint(endpoint.getEndpointAddressUri(),
adapter);
}
}
@Override
@SuppressWarnings("unchecked")
public T getSPI(Class spiType) {
if (ServletContext.class.isAssignableFrom( spiType)) {
return (T)servletContext;
}
if (ServerPipelineHook.class.isAssignableFrom(spiType)){
ServiceLocator h = Globals.getDefaultHabitat();
ServerPipeCreator s = h.getService(ServerPipeCreator.class);
s.init(endpoint);
return((T)s);
}
if (ResourceInjector.class.isAssignableFrom(spiType)) {
// Give control of injection time only for servlet endpoints
if(endpoint.implementedByWebComponent()) {
return (T) new ResourceInjectorImpl(endpoint);
}
}
if (Module.class.isAssignableFrom(spiType)) {
if (module != null) {
return ((T)spiType.cast(module));
}
else {
return ((T)spiType.cast(new Module() {
@Override
public List getBoundEndpoints() {
return new ArrayList(){
private static final long serialVersionUID = 1L;
@Override
public boolean add(BoundEndpoint e) {
return true;
}
};
}
}));
}
}
return null;
}
}