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 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.freedesktop.dbus.interfaces.DBusInterface;
import org.freedesktop.dbus.interfaces.Properties;
/**
* File generated - 2018-07-25.
* 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, Properties {
/**
* 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();
}