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

import java.io.Serializable;
import java.net.URL;

/**
 * An implementation.
 * 
 * @author <a href="adrian@jboss.com">Adrian Brock</a>
 * @version $Revision: 1.1.2.2 $
 */
public class TestImplementation2 implements TestInterface2, Serializable
{
   static final long serialVersionUID = -4092238900377727085L;
   Integer stringProperty;
   
   public Integer getStringProperty()
   {
      return stringProperty;
   }

   public void setStringProperty(Integer integer)
   {
      stringProperty = integer;
   }
}