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 qname_1, Element element_1, Element element_2)
 {
  return null;
 }
 
 public static Operation newInstance(QName qname_1, Element element_1, Element element_2, FaultDetailHandler faultdetailhandler_1)
 {
  return null;
 }
 
 public void setProperty(String string_1, String string_2) throws IllegalArgumentException
 {
 }
 
 public Object invoke(Object object_1) throws JAXRPCException
 {
  return null;
 }
 
}
package javax.obex;

import java.io.IOException;
import javax.microedition.io.ContentConnection;

public interface Operation extends ContentConnection
{

 public void abort() throws IOException;
 
 public HeaderSet getReceivedHeaders() throws IOException;
 
 public void sendHeaders(HeaderSet headerset_1) throws IOException;
 
 public int getResponseCode() throws IOException;
 
}