HelloObj.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.jbossnet.admindevel; /** A custom data object class that needs to specify a custom serializer * * @jboss-net.xml-schema urn="hello:HelloObj" */ public class HelloObj implements java.io.Serializable { static final long serialVersionUID = 9104187002831663110L; private String msg; public HelloObj() { this(null); } public HelloObj(String msg) { this.msg = msg; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } }
HelloObj.java |