package javax.obex;

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

public interface ClientSession extends Connection
{

 public void setAuthenticator(Authenticator authenticator_1);
 
 public HeaderSet createHeaderSet();
 
 public void setConnectionID(long long_1);
 
 public long getConnectionID();
 
 public HeaderSet connect(HeaderSet headerset_1) throws IOException;
 
 public HeaderSet disconnect(HeaderSet headerset_1) throws IOException;
 
 public HeaderSet setPath(HeaderSet headerset_1, boolean boolean_1, boolean boolean_2) throws IOException;
 
 public HeaderSet delete(HeaderSet headerset_1) throws IOException;
 
 public Operation get(HeaderSet headerset_1) throws IOException;
 
 public Operation put(HeaderSet headerset_1) throws IOException;
 
}