/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package org.jboss.test.aop.bean;

/**
 *
 * @author <a href="mailto:bill@jboss.org">Bill Burke</a>
 * @version $Revision: 1.4 $
 */
public class SecuredPOJO
{
   public int someField;
   public String excludedField;
   public long uncheckedField;

   // unchecked
   public SecuredPOJO()
   {
   }

   // allowed
   public SecuredPOJO(int field)  
   {
      someField = field;
   }

   public SecuredPOJO(String field) {}

   public void unchecked() {}

   public void someMethod() {}

   public void excluded() {}
   
}