package javax.obex;

public interface Authenticator
{

 public PasswordAuthentication onAuthenticationChallenge(String, boolean, boolean);
 
 public byte[] onAuthenticationResponse(byte[]);
 
}