/*
 * 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.3 $
 */
public class NonadvisedPOJO
{

   public NonadvisedPOJO()
   {
   }

   public NonadvisedPOJO(String s) 
   {
      remoteValue = s;
   }

   private String remoteValue;

   public String remoteTest() 
   { 
      return remoteValue;
   }
}