org.bluez.obex.Session1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bluez-dbus-osgi Show documentation
Show all versions of bluez-dbus-osgi Show documentation
Java native bluetooth library which uses bluez via dbus (linux only).
This is the OSGi compliant bundle of all required libraries in one bundle.
package org.bluez.obex;
import org.freedesktop.dbus.interfaces.DBusInterface;
import org.bluez.exceptions.BluezFailedException;
import org.bluez.exceptions.BluezNotSupportedException;
/**
* File generated - 2020-06-18.
* Based on bluez Documentation: obex-api.txt.
*
* Service: org.bluez.obex
* Interface: org.bluez.obex.Session1
*
* Object path:
* /org/bluez/obex/server/session{0, 1, 2, ...} or
* /org/bluez/obex/client/session{0, 1, 2, ...}
*
* Supported properties:
*
* string Source [readonly]
*
* Bluetooth adapter address
*
* string Destination [readonly]
*
* Bluetooth device address
*
* byte Channel [readonly]
*
* Bluetooth channel
*
* string Target [readonly]
*
* Target UUID
*
* string Root [readonly]
*
* Root path
*
*
*
*/
public interface Session1 extends DBusInterface {
/**
* From bluez documentation:
*
* Get remote device capabilities.
*
*
* @return String - maybe null
*
* @throws BluezNotSupportedException when operation not supported
* @throws BluezFailedException on failure
*/
String GetCapabilities() throws BluezNotSupportedException, BluezFailedException;
}