Changeset 3499


Ignore:
Timestamp:
2002-10-29T15:06:46+13:00 (22 years ago)
Author:
kjdon
Message:

ModuleInterface process changed from Node to Element

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/SOAPServer.java

    r3482 r3499  
    2020
    2121import org.greenstone.gsdl3.core.*;
    22 import org.w3c.dom.Node;
     22import org.w3c.dom.Element;
    2323/**
    2424 * The server side of a SOAP connection
     
    4343    }
    4444   
    45     /** Process a request */
     45    /** Process a String request */
    4646    public String process(String xml_in) {
    4747    return mr_.process(xml_in);
     
    4949    }
    5050
    51     /** shouldn't be used, but need this to implement ModuleInterface */
    52     public Node process(Node xml_in) {
    53     return  mr_.process(xml_in);
     51    /** Process an Element request */
     52    public Element process(ELement xml_in) {
     53    return mr_.process(xml_in);
    5454    }
    5555}
Note: See TracChangeset for help on using the changeset viewer.