
org.bluez.MediaControl1 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.
The newest version!
package org.bluez;
import org.freedesktop.dbus.interfaces.DBusInterface;
/**
* File generated - 2023-02-20.
* Based on bluez Documentation: media-api.txt.
*
* Service: org.bluez
* Interface: org.bluez.MediaControl1
*
* Object path:
* [variable prefix]/{hci0,hci1,...}/dev_XX_XX_XX_XX_XX_XX
*
* Supported properties:
*
*
*
* boolean Connected [readonly]
*
* object Player [readonly, optional]
*
* Addressed Player object path.
*
*
*
*/
public interface MediaControl1 extends DBusInterface {
/**
* From bluez documentation:
*
* Resume playback.
*
*/
@Deprecated
void Play();
/**
* From bluez documentation:
*
* Pause playback.
*
*/
@Deprecated
void Pause();
/**
* From bluez documentation:
*
* Stop playback.
*
*/
@Deprecated
void Stop();
/**
* From bluez documentation:
*
* Next item.
*
*/
@Deprecated
void Next();
/**
* From bluez documentation:
*
* Previous item.
*
*/
@Deprecated
void Previous();
/**
* From bluez documentation:
*
* Adjust remote volume one step up
*
*/
@Deprecated
void VolumeUp();
/**
* From bluez documentation:
*
* Adjust remote volume one step down
*
*/
@Deprecated
void VolumeDown();
/**
* From bluez documentation:
*
* Fast forward playback, this action is only stopped
* when another method in this interface is called.
*
*/
@Deprecated
void FastForward();
/**
* From bluez documentation:
*
* Rewind playback, this action is only stopped
* when another method in this interface is called.
*
*/
@Deprecated
void Rewind();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy