X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=serial%2Fserver%2FConnectActionServerString.java;h=35dd4dd1985fb810c8300d4a810f16f227efd5a8;hb=HEAD;hp=8d113c1dc5db3fe968ed0f10b6fae59fbdb62be3;hpb=13df971ea85ae8a5c49c55b030a9d1f593bf633a;p=fanfix.git diff --git a/serial/server/ConnectActionServerString.java b/serial/server/ConnectActionServerString.java deleted file mode 100644 index 8d113c1..0000000 --- a/serial/server/ConnectActionServerString.java +++ /dev/null @@ -1,52 +0,0 @@ -package be.nikiroo.utils.serial.server; - -import java.io.IOException; -import java.net.Socket; - -/** - * Class used for the server basic handling. - *

- * It represents a single action: a server is expected to execute one action for - * each client action. - * - * @author niki - */ -public class ConnectActionServerString extends ConnectActionServer { - /** - * Create a new {@link ConnectActionServerString} as the server version. - * - * @param s - * the socket to bind to - * @param key - * an optional key to encrypt all the communications (if NULL, - * everything will be sent in clear text) - */ - public ConnectActionServerString(Socket s, String key) { - super(s, key); - } - - /** - * Serialise and send the given object to the client. - * - * @param data - * the data to send - * - * @throws IOException - * in case of I/O error - */ - public void send(String data) throws IOException { - action.sendString(data); - } - - /** - * (Flush the data to the client if needed and) retrieve its answer. - * - * @return the answer if it is available, or NULL if not - * - * @throws IOException - * in case of I/O error - */ - public String rec() throws IOException { - return action.recString(); - } -}