Remove TODO file
[remote/remote-gui.git] / src / motecontrol / protocols / clientserver / MsgResult.java
blobe6c32e7deeaf83e9474bbda2f7dfa44530c4e94c
1 /*
2 * Created on Sep 19, 2005
4 * TODO To change the template for this generated file go to
5 * Window - Preferences - Java - Code Style - Code Templates
6 */
7 package diku.distlab.motecontrolclientlib.protocols.clientserver;
8 import diku.distlab.motecontrolclientlib.protocols.MsgUint8;
9 /**
10 * @author zept
12 * TODO To change the template for this generated type comment go to
13 * Window - Preferences - Java - Code Style - Code Templates
15 public class MsgResult extends MsgUint8 {
16 public static final int SUCCESS = 0;
17 public static final int FAILURE = 1;
18 public static final int MOTE_NOT_CONTROLLED = 2;
19 public static final int MOTE_NOT_FOUND = 3;
20 public static final int MOTE_OCCUPIED = 4;
21 public static final int CLIENT_NOT_AUTHORIZED = 5;
22 public static final int NOT_SUPPORTED = 6;