Back to project page miner.
The source code is released under:
Apache License
If you think the Android project miner listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.kolomiyets.miner.bt.protocol; /* w w w . j a va 2 s . c o m*/ public class CmdResponse extends CmdHandshake { public final static int CODE_OK = 0; public final static int CODE_ERR = -1; public final Integer code; public CmdResponse(Integer code) { super(ECmdName.RESPONSE); this.code = code; } }