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) throws IOException;
 
 public int getResponseCode() throws IOException;
 
}