com.sun.xml.ws.developer.UsesJAXBContextFeature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxws-rt Show documentation
Show all versions of jaxws-rt Show documentation
JAX-WS Runtime with module descriptor
/*
* Copyright (c) 1997, 2022 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.developer;
import com.sun.xml.ws.api.FeatureConstructor;
import com.sun.xml.ws.api.model.SEIModel;
import org.glassfish.jaxb.runtime.api.JAXBRIContext;
import org.glassfish.jaxb.runtime.api.TypeReference;
import com.sun.istack.NotNull;
import com.sun.istack.Nullable;
import jakarta.xml.ws.WebServiceFeature;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import java.lang.reflect.InvocationTargetException;
import java.util.List;
import org.glassfish.gmbal.ManagedAttribute;
import org.glassfish.gmbal.ManagedData;
/**
* A {@link WebServiceFeature} that instructs the JAX-WS runtime to use a specific {@link JAXBContextFactory}
* instance of creating {@link JAXBContext}.
*
* @see UsesJAXBContext
* @since 2.1.5
* @author Kohsuke Kawaguchi
*/
@ManagedData
public class UsesJAXBContextFeature extends WebServiceFeature {
/**
* Constant value identifying the {@link UsesJAXBContext} feature.
*/
public static final String ID = "http://jax-ws.dev.java.net/features/uses-jaxb-context";
private final JAXBContextFactory factory;
/**
* Creates {@link UsesJAXBContextFeature}.
*
* @param factoryClass
* This class has to have a public no-arg constructor, which will be invoked to create
* a new instance. {@link JAXBContextFactory#createJAXBContext(SEIModel, List, List)} will
* be then called to create {@link JAXBContext}.
*/
@FeatureConstructor("value")
public UsesJAXBContextFeature(@NotNull Class extends JAXBContextFactory> factoryClass) {
try {
factory = factoryClass.getConstructor().newInstance();
} catch (InstantiationException | InvocationTargetException e) {
Error x = new InstantiationError(e.getMessage());
x.initCause(e);
throw x;
} catch (IllegalAccessException e) {
Error x = new IllegalAccessError(e.getMessage());
x.initCause(e);
throw x;
} catch (NoSuchMethodException e) {
Error x = new NoSuchMethodError(e.getMessage());
x.initCause(e);
throw x;
}
}
/**
* Creates {@link UsesJAXBContextFeature}.
* This version allows {@link JAXBContextFactory} to carry application specific state.
*
* @param factory
* Uses a specific instance of {@link JAXBContextFactory} to create {@link JAXBContext}.
*/
public UsesJAXBContextFeature(@Nullable JAXBContextFactory factory) {
this.factory = factory;
}
/**
* Creates {@link UsesJAXBContextFeature}.
* This version allows you to create {@link JAXBRIContext} upfront and uses it.
*/
public UsesJAXBContextFeature(@Nullable final JAXBRIContext context) {
this.factory = new JAXBContextFactory() {
@Override
@NotNull
public JAXBRIContext createJAXBContext(@NotNull SEIModel sei, @NotNull List classesToBind, @NotNull List typeReferences) throws JAXBException {
return context;
}
};
}
/**
* Gets the {@link JAXBContextFactory} instance to be used for creating {@link JAXBContext} for SEI.
*
* @return
* null if the default {@link JAXBContext} shall be used.
*/
@ManagedAttribute
public @Nullable JAXBContextFactory getFactory() {
return factory;
}
@Override
@ManagedAttribute
public String getID() {
return ID;
}
}