@EjbDeployment annotation as alternative to <ejb-deployment> in openejb-jar.xml
-------------------------------------------------------------------------------

                 Key: OPENEJB-1029
                 URL: https://issues.apache.org/jira/browse/OPENEJB-1029
             Project: OpenEJB
          Issue Type: Improvement
          Components: configuration, deployment
            Reporter: David Blevins
            Assignee: David Blevins
            Priority: Minor
             Fix For: 3.1.1


/**
 * 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 "";

}



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to