org.bluez.SimAccess1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bluez-dbus Show documentation
Show all versions of bluez-dbus Show documentation
Java native bluetooth library which uses bluez via dbus (linux only)
package org.bluez;
import org.bluez.exceptions.BluezFailedException;
import org.freedesktop.dbus.interfaces.DBusInterface;
import org.freedesktop.dbus.interfaces.Properties;
/**
* File generated - 2018-07-25.
* Based on bluez Documentation: sap-api.txt.
*
* Service: org.bluez
* Interface: org.bluez.SimAccess1
*
* Object path:
* [variable prefix]/{hci0,hci1,...}
*
* Supported properties:
*
* boolean Connected [readonly]
*
* Indicates if SAP client is connected to the server.
*
*/
public interface SimAccess1 extends DBusInterface, Properties {
/**
* From bluez documentation:
*
* Disconnects SAP client from the server.
*
*
* @throws BluezFailedException on failure
*/
void Disconnect() throws BluezFailedException;
}