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

import org.w3c.dom.Element;

/** An endpoint that receives an XML document
 */
public class ObjectElementServer
{

   public Object processObject(Object xmlObject)
   {
      System.out.println("processObject: " + xmlObject.getClass());
      return xmlObject;
   }

   public Element processElement(Element xmlElement)
   {
      System.out.println("processElement: " + xmlElement.getClass());
      return xmlElement;
   }
}