1 22 23 package org.jboss.annotation.management; 24 25 import java.lang.annotation.Retention ; 26 import java.lang.annotation.RetentionPolicy ; 27 28 35 @Retention (value=RetentionPolicy.RUNTIME) 36 public @interface ManagedPropertyRef 37 { 38 42 String context() default "/"; 43 44 47 String beanName(); 48 49 52 String propertyName(); 53 54 58 String description() default ""; 59 } 60 | Popular Tags |