package javax.microedition.xml.rpc;

import javax.xml.namespace.QName;
import javax.xml.rpc.JAXRPCException;

public class Operation
{
 public static final String SOAPACTION_URI_PROPERTY = "javax.xml.rpc.soap.http.soapaction.uri";

 protected Operation()
 {
 }
 
 public static Operation newInstance(QName, Element, Element)
 {
  return null;
 }
 
 public static Operation newInstance(QName, Element, Element, FaultDetailHandler)
 {
  return null;
 }
 
 public void setProperty(String, String) throws IllegalArgumentException
 {
 }
 
 public Object invoke(Object) throws JAXRPCException
 {
  return null;
 }
 
}