aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordaneren2005 <daneren2005@gmail.com>2013-07-29 17:01:34 -0700
committerdaneren2005 <daneren2005@gmail.com>2013-07-29 17:01:34 -0700
commitbcba7ff613fbb532391722e806f19b73fe006804 (patch)
tree8ecca29eb7e5fd355ce6c96f787a02efdb2fe20d /src
parent4e6548af46e4d2fca15e353d8b9529190dbc9645 (diff)
downloaddsub-bcba7ff613fbb532391722e806f19b73fe006804.tar.gz
dsub-bcba7ff613fbb532391722e806f19b73fe006804.tar.bz2
dsub-bcba7ff613fbb532391722e806f19b73fe006804.zip
Create RemoteController Interface
Diffstat (limited to 'src')
-rw-r--r--src/github/daneren2005/dsub/service/RemoteController32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/github/daneren2005/dsub/service/RemoteController b/src/github/daneren2005/dsub/service/RemoteController
new file mode 100644
index 00000000..789881b1
--- /dev/null
+++ b/src/github/daneren2005/dsub/service/RemoteController
@@ -0,0 +1,32 @@
+/*
+ This file is part of Subsonic.
+
+ Subsonic is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ Subsonic is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Subsonic. If not, see <http://www.gnu.org/licenses/>.
+
+ Copyright 2009 (C) Sindre Mehus
+*/
+
+package github.daneren2005.dsub.service;
+
+public interface RemoteController {
+ void start();
+ void stop();
+
+ void updatePlaylist();
+ void changePosition(int seconds);
+ void changeTrack(int index, DownloadFile song);
+ void setVolume(float gain);
+
+ int getRemotePosition();
+}