org.codehaus.enunciate.modules.jersey.SpringManagedLifecycle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enunciate-jersey-rt Show documentation
Show all versions of enunciate-jersey-rt Show documentation
The Enunciate Jersey runtime contains the libraries to support a Jersey-based REST project.
package org.codehaus.enunciate.modules.jersey;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.annotation.ElementType;
/**
* Annotation for specifying that this bean's lifecycle is to be managed by Spring.
*
* @author Ryan Heaton
* @deprecated Use @ExternallyManagedLifecycle
*/
@Retention ( RetentionPolicy.RUNTIME )
@Target ( ElementType.TYPE )
public @interface SpringManagedLifecycle {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy