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

org.bluez.GattDescriptor1 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.BluezInProgressException;
import org.bluez.exceptions.BluezNotAuthorizedException;
import org.bluez.exceptions.BluezNotPermittedException;
import org.bluez.exceptions.BluezNotSupportedException;
import org.freedesktop.dbus.DBusInterface;
import org.freedesktop.dbus.Variant;

public interface GattDescriptor1 extends DBusInterface {

    @SuppressWarnings("rawtypes")
    byte[] ReadValue(Map _flags) throws BluezFailedException, BluezInProgressException,
                                                        BluezNotPermittedException, BluezNotAuthorizedException,
                                                        BluezNotSupportedException;
    @SuppressWarnings("rawtypes")
    void WriteValue(byte[] _value, Map _flags) throws BluezFailedException, BluezInProgressException,
                                                        BluezNotPermittedException, BluezNotAuthorizedException,
                                                        BluezNotSupportedException;;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy