1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.test.jbossnet.message;8 9 import org.w3c.dom.Document ;10 11 /** An endpoint that receives an XML document12 */13 public class MessageServer14 {15 public Document processMessage(Document xmlObject)16 {17 System.out.println("processMessage: " + xmlObject.getClass());18 return xmlObject;19 }20 }21