Ignore:
Timestamp:
2002-07-06T14:25:01+12:00 (22 years ago)
Author:
say1
Message:

added GNU headers to all java files. added @author and @version tags. added a fair number of javadoc comments (but not as many as I probably should).

File:
1 edited

Legend:

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

    r3222 r3235  
     1/*
     2 *    SOAPServer.java
     3 *    Copyright (C) 2002 New Zealand Digital Library, http://www.nzdl.org
     4 *
     5 *    This program is free software; you can redistribute it and/or modify
     6 *    it under the terms of the GNU General Public License as published by
     7 *    the Free Software Foundation; either version 2 of the License, or
     8 *    (at your option) any later version.
     9 *
     10 *    This program is distributed in the hope that it will be useful,
     11 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
     12 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13 *    GNU General Public License for more details.
     14 *
     15 *    You should have received a copy of the GNU General Public License
     16 *    along with this program; if not, write to the Free Software
     17 *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
     18 */
    119package org.greenstone.gsdl3;
    220
    321import org.greenstone.gsdl3.core.*;
    422import org.w3c.dom.Node;
     23/**
     24 * The server side of a SOAP connection
     25 *
     26 * @author <a href="mailto:[email protected]">Katherine Don</a>
     27 * @version $Revision$
     28 * @see <a href="http://www.w3.org/TR/SOAP/">Simple Object Access Protocol (SOAP) 1.1 </a>
     29 */
    530
    631public class SOAPServer
    732    implements ModuleInterface {
    8    
     33 
     34  /** The message router we're talking to */
    935    MessageRouter mr_=null;
    10    
     36 
     37  /** The no-args constructor */
    1138    public SOAPServer() {
    1239    mr_ = new MessageRouter();
     
    1643    }
    1744   
     45  /** Process a request */
    1846    public String process(String xml_in) {
    1947    return mr_.process(xml_in);
Note: See TracChangeset for help on using the changeset viewer.