Suppression protocols inutiles
This commit is contained in:
parent
067d9d661d
commit
a883918363
@ -1,12 +0,0 @@
|
|||||||
package lightcontainer.protocol;
|
|
||||||
|
|
||||||
public class ClientFileList extends Protocol{
|
|
||||||
protected ClientFileList() {
|
|
||||||
super("FILELIST", "^FILELIST\r\n$");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void execute(String cmd) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
package lightcontainer.protocol;
|
|
||||||
|
|
||||||
public class ClientGetFile extends Protocol{
|
|
||||||
protected ClientGetFile() {
|
|
||||||
super("GETFILE","^GETFILE ([^ !]{1,20})\r\n$");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void execute(String cmd) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
package lightcontainer.protocol;
|
|
||||||
|
|
||||||
public class ClientRemoveFile extends Protocol{
|
|
||||||
|
|
||||||
protected ClientRemoveFile() {
|
|
||||||
super("REMOVEFILE", "^REMOVEFILE ([^ !]{1,20})\r\n$");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void execute(String cmd) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
package lightcontainer.protocol;
|
|
||||||
|
|
||||||
public class ClientSaveFile extends Protocol {
|
|
||||||
protected ClientSaveFile() {
|
|
||||||
super("SAVEFILE", "^SAVE_FILE ([^ !]{1,20}) ([0-9]{1,10})\r\n$");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void execute(String cmd) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
package lightcontainer.protocol;
|
|
||||||
|
|
||||||
public class ClientSignIn extends Protocol {
|
|
||||||
|
|
||||||
protected ClientSignIn() {
|
|
||||||
super("SIGNIN", "^(SIGNIN) ([A-Za-z0-9]{2,20}) ([^ !]{5,50})\r\n$");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void execute(String cmd) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
package lightcontainer.protocol;
|
|
||||||
|
|
||||||
public class ClientSignOut extends Protocol {
|
|
||||||
protected ClientSignOut() {
|
|
||||||
super("SIGNOUT", "^SIGNOUT\r\n$");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void execute(String cmd) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
package lightcontainer.protocol;
|
|
||||||
|
|
||||||
public class ClientSignUp extends Protocol{
|
|
||||||
protected ClientSignUp() {
|
|
||||||
super("SIGNUP","^(SIGNUP) ([A-Za-z0-9]{2,20}) ([^ !]{5,50})\r\n$");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void execute(String cmd) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
package lightcontainer.protocol;
|
|
||||||
|
|
||||||
public class SbeEraseResult extends Protocol {
|
|
||||||
protected SbeEraseResult() {
|
|
||||||
super("ERASERESULT", "^(ERASE_OK|ERASE_ERROR)\r\n$");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void execute(String cmd) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,16 +0,0 @@
|
|||||||
package lightcontainer.protocol;
|
|
||||||
|
|
||||||
public class SbeHello extends Protocol {
|
|
||||||
|
|
||||||
|
|
||||||
protected SbeHello() {
|
|
||||||
super("HELLO", "^(HELLO) ([A-Za-z0-9.]{5,20}) ([\\d]{0,5})\r\n$");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void execute(String cmd) {
|
|
||||||
if (matcherCheck(cmd)) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
package lightcontainer.protocol;
|
|
||||||
|
|
||||||
public class SbeRetrieveResult extends Protocol {
|
|
||||||
protected SbeRetrieveResult() {
|
|
||||||
super("RETTRIEVERESULT", "^((RETRIEVE_OK) ([A-Za-z0-9.]{50,200} [0-9]{1,10} [A-Za-z0-9.]{50,200})\r\n)|((RETRIEVE_ERROR)\r\n)$");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void execute(String cmd) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
package lightcontainer.protocol;
|
|
||||||
|
|
||||||
public class SbeSendResult extends Protocol {
|
|
||||||
|
|
||||||
protected SbeSendResult() {
|
|
||||||
super("SENDRESULT", "^(SEND_OK|SEND_ERROR)\r\n$");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void execute(String cmd) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user