Bundle: fix memory leak at init/reset
[nikiroo-utils.git] / src / be / nikiroo / utils / serial / server / ConnectActionServerString.java
diff --git a/src/be/nikiroo/utils/serial/server/ConnectActionServerString.java b/src/be/nikiroo/utils/serial/server/ConnectActionServerString.java
deleted file mode 100644 (file)
index 35dd4dd..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-package be.nikiroo.utils.serial.server;
-
-import java.io.IOException;
-import java.net.Socket;
-
-import be.nikiroo.utils.Version;
-
-/**
- * Class used for the server basic handling.
- * <p>
- * 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} with the current
-        * application version (see {@link Version#getCurrentVersion()}) as the
-        * server version.
-        * 
-        * @param s
-        *            the socket to bind to
-        */
-       public ConnectActionServerString(Socket s) {
-               super(s);
-       }
-
-       /**
-        * Create a new {@link ConnectActionServerString}.
-        * 
-        * @param s
-        *            the socket to bind to
-        * @param version
-        *            the server version
-        */
-       public ConnectActionServerString(Socket s, Version version) {
-               super(s, version);
-       }
-
-       /**
-        * 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();
-       }
-}