package org.jboss.test.jca.adminobject;
import java.io.Serializable;
import java.net.URL;
public class TestImplementation implements TestInterface, Serializable
{
static final long serialVersionUID = 3318205014475425206L;
String stringProperty;
Integer integerProperty;
public String getStringProperty()
{
return stringProperty;
}
public void setStringProperty(String string)
{
stringProperty = string;
}
public Integer getIntegerProperty()
{
return integerProperty;
}
public void setIntegerProperty(Integer integer)
{
integerProperty = integer;
}
}