package javax.microedition.content;

public interface ContentHandlerServer extends ContentHandler
{

 public int accessAllowedCount();
 
 public void cancelGetRequest();
 
 public boolean finish(Invocation, int);
 
 public String getAccessAllowed(int);
 
 public Invocation getRequest(boolean);
 
 public boolean isAccessAllowed(String);
 
 public void setListener(RequestListener);
 
}