All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bluez.Adapter1 Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package org.bluez;

import java.util.Map;

import org.bluez.exceptions.BluezFailedException;
import org.bluez.exceptions.BluezInvalidArgumentException;
import org.bluez.exceptions.BluezNotAuthorizedException;
import org.bluez.exceptions.BluezNotReadyException;
import org.bluez.exceptions.BluezNotSupportedException;
import org.freedesktop.dbus.DBusInterface;

public interface Adapter1 extends DBusInterface {

    void StartDiscovery() throws BluezNotReadyException, BluezFailedException;
    void StopDiscovery() throws BluezNotReadyException, BluezFailedException, BluezNotAuthorizedException;
    void RemoveDevice(Object _device) throws BluezFailedException, BluezInvalidArgumentException;

    void SetDiscoveryFilter(Map _filter) throws BluezNotReadyException, BluezNotSupportedException, BluezFailedException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy