package javax.bluetooth;

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

public class RemoteDevice
{

 protected RemoteDevice(String)
 {
 }
 
 public boolean isTrustedDevice()
 {
  return false;
 }
 
 public String getFriendlyName(boolean) throws IOException
 {
  return null;
 }
 
 public final String getBluetoothAddress()
 {
  return null;
 }
 
 public boolean equals(Object)
 {
  return false;
 }
 
 public int hashCode()
 {
  return 0;
 }
 
 public static RemoteDevice getRemoteDevice(Connection) throws IOException
 {
  return null;
 }
 
 public boolean authenticate() throws IOException
 {
  return false;
 }
 
 public boolean authorize(Connection) throws IOException
 {
  return false;
 }
 
 public boolean encrypt(Connection, boolean) throws IOException
 {
  return false;
 }
 
 public boolean isAuthenticated()
 {
  return false;
 }
 
 public boolean isAuthorized(Connection) throws IOException
 {
  return false;
 }
 
 public boolean isEncrypted()
 {
  return false;
 }
 
}