1 22 package org.jboss.ejb; 23 24 25 31 public class DeclareRolesImpl implements javax.annotation.security.DeclareRoles 32 { 33 private String [] v; 34 35 public DeclareRolesImpl(String [] v) 36 { 37 this.v = v; 38 } 39 40 public String [] value() 41 { 42 return v; 43 } 44 45 public Class annotationType() 46 { 47 return javax.annotation.security.DeclareRoles.class; 48 } 49 50 } 51 | Popular Tags |