com.sun.jersey.server.spi.component
Annotation Type ResourceComponentProviderFactoryClass


@Target(value=ANNOTATION_TYPE)
@Retention(value=RUNTIME)
@Documented
public @interface ResourceComponentProviderFactoryClass

Specifies the resource component provider that is used to obtain an instance of the resource class. Omission of this annotation will result in the default provider being used.

See Also:
ResourceComponentProvider

Required Element Summary
 Class<? extends ResourceComponentProviderFactory> value
          The class of the resource component provider that is used to obtain an instance of the resource class.
 

Element Detail

value

public abstract Class<? extends ResourceComponentProviderFactory> value
The class of the resource component provider that is used to obtain an instance of the resource class. The specified class must implement ResourceComponentProvider.

Returns:
the resource component provider class.


Copyright © 2013 Oracle Corporation. All Rights Reserved.