1 7 package org.jboss.ejb; 8 9 10 11 17 public class RolesReferencedImpl implements javax.annotation.security.RolesReferenced 18 { 19 private String [] v; 20 21 public RolesReferencedImpl(String [] v) 22 { 23 this.v = v; 24 } 25 26 public String [] value() 27 { 28 return v; 29 } 30 31 public Class annotationType() 32 { 33 return javax.annotation.security.RolesReferenced.class; 34 } 35 36 } 37 | Popular Tags |