3 import interfaces
.DJInterface
;
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.
19 return new Response(null, Response
.NO_CONTENT
);