JBoss.org Community Documentation

9.20.1.1. EndpointConfig

 
/**
* Defines an endpoint or client configuration. 
* This annotation is valid on an endpoint implementaion bean or a SEI.
* 
* @author Heiko.Braun@jboss.org
* @since 16.01.2007
*/
@Retention(value = RetentionPolicy.RUNTIME)
@Target(value = { ElementType.TYPE })
public @interface EndpointConfig {
... 
/**
* The optional config-name element gives the configuration name that must be present in
* the configuration given by element config-file.
* 
* Server side default: Standard Endpoint
* Client side default: Standard Client
*/
String configName() default "";
...
/**
* The optional config-file element is a URL or resource name for the configuration.
*
* Server side default: standard-jaxws-endpoint-config.xml
* Client side default: standard-jaxws-client-config.xml
*/
String configFile() default "";
}