1 22 package org.jboss.test.aop.bean; 23 24 29 public class SecuredPOJO 30 { 31 public int someField; 32 public String excludedField; 33 public long uncheckedField; 34 35 public SecuredPOJO() 37 { 38 } 39 40 public SecuredPOJO(int field) 42 { 43 someField = field; 44 } 45 46 public SecuredPOJO(String field) {} 47 48 public void unchecked() {} 49 50 public void someMethod() {} 51 52 public void excluded() {} 53 54 } 55 56 | Popular Tags |