1 22 package org.jboss.annotation.ejb; 23 24 import java.lang.annotation.Annotation ; 25 26 32 public class AspectDomainImpl implements AspectDomain 33 { 34 String value = ""; 35 36 public AspectDomainImpl(String value) 37 { 38 this.value = value; 39 } 40 41 public String value() 42 { 43 return value; 44 } 45 46 public Class <? extends Annotation > annotationType() 47 { 48 return AspectDomain.class; 49 } 50 } 51 | Popular Tags |