package mgg.webServiceAdapter.serviceRequestHandler;

/**
 * Title:        Demo Web Service Adapter for ESP
 * Description:  provide an web service access for ESP
 * Copyright:    Copyright (c) 2001
 * Company:      Software AG
 * @author
 * @version 1.0
 */

import org.apache.soap.rpc.SOAPContext;
import mgg.webServiceAdapter.serviceAction.*;

/**
 * Abstract base class for all service request handlers
 */

abstract public class AbstractServiceRequestHandler {

  protected SOAPContext _reqCtx;

  public AbstractServiceRequestHandler() {
  }

  public void setRequestContext( SOAPContext reqCtx ) {
    _reqCtx = reqCtx;
  }

  /**
   * log message string to console
   */
  public void log( String msg ) {
    System.out.println(""+this.toString()+": "+msg);
  }

}