|
/**
* Annotation that matches the <ejb-deployment> element in the openejb-jar.xml file
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface EjbDeployment {
/**
* The Deployment ID for this bean
* @return
*/
java.lang.String id() default "";
/**
* The Container ID where the bean should be deployed
* @return
*/
java.lang.String container() default "";
}
|