git-svn-id: https://stereo.googlecode.com/svn/trunk@440 c67ee986-0855-0410-825f-15918...
[stereo.git] / DACPlib / src / util / command / Logout.java
blob4fb0e668da541ca42284f9f49e12bea4375e1a15
1 package util.command;
3 import interfaces.DJInterface;
5 import java.util.Map;
7 import api.Response;
9 public class Logout implements Command {
11 public void init(Map<String, String> args) {
12 System.out.println("logging out with argument: " + args);
15 public Response run(DJInterface dj) {
16 //nothing to do until we manage connections.
18 //expects 204
19 return new Response(null, Response.NO_CONTENT);