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

com.sun.xml.ws.developer.Stateful Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
package com.sun.xml.ws.developer;

import com.sun.xml.ws.api.server.InstanceResolverAnnotation;
import com.sun.xml.ws.server.StatefulInstanceResolver;

import javax.jws.WebService;
import javax.xml.ws.spi.WebServiceFeatureAnnotation;
import java.lang.annotation.Documented;
import static java.lang.annotation.ElementType.TYPE;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;

/**
 * Designates a stateful {@link WebService}.
 *
 * 

* A service class that has this feature on will behave as a stateful web service. * See {@link StatefulWebServiceManager} for more about stateful web service. * * @since 2.1 * @ses StatefulWebServiceManager */ @Retention(RUNTIME) @Target(TYPE) @Documented @WebServiceFeatureAnnotation(id = StatefulFeature.ID, bean = StatefulFeature.class) @InstanceResolverAnnotation(StatefulInstanceResolver.class) public @interface Stateful { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy