TestData.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.jbossmx.implementation.server.support; import java.io.Serializable; /** A trival Serializable data class used by the ContextCLMBean * * @author Scott.Stark@jboss.org */ public class TestData implements Serializable { static final long serialVersionUID = 1524999842229584333L; /** Creates a new instance of TestData */ public TestData() { } }
TestData.java |