package com.sun.j2mews.xml.rpc;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.rmi.ServerException;
import javax.microedition.io.HttpConnection;
import javax.microedition.xml.rpc.Element;
import javax.microedition.xml.rpc.FaultDetailHandler;
import javax.microedition.xml.rpc.Operation;
import javax.xml.namespace.QName;
import javax.xml.rpc.JAXRPCException;

public class OperationImpl extends Operation
{

 public OperationImpl(QName, Element, Element) throws IllegalArgumentException
 {
 }
 
 public OperationImpl(QName, Element, Element, FaultDetailHandler) throws IllegalArgumentException
 {
 }
 
 public void setProperty(String, String) throws IllegalArgumentException
 {
 }
 
 public Object invoke(Object) throws JAXRPCException
 {
  return null;
 }
 
 protected OutputStream setupReqStream(HttpConnection) throws IOException
 {
  return null;
 }
 
 protected InputStream setupResStream(HttpConnection) throws ServerException, IOException
 {
  return null;
 }
 
}