package javax.bluetooth;

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

public class RemoteDevice
{

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