X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Futils%2Fserial%2Fserver%2FConnectActionClientObject.java;h=791f850b085819e1ac24480a2226358d708d194a;hb=c60b070de7344284b8467ebe3653447b58df5a6c;hp=f8eaae176561ce32bbaeac73371e22dbb52e649d;hpb=8468bb79f0fc9c88fa21355509731625732eb10e;p=nikiroo-utils.git diff --git a/src/be/nikiroo/utils/serial/server/ConnectActionClientObject.java b/src/be/nikiroo/utils/serial/server/ConnectActionClientObject.java index f8eaae1..791f850 100644 --- a/src/be/nikiroo/utils/serial/server/ConnectActionClientObject.java +++ b/src/be/nikiroo/utils/serial/server/ConnectActionClientObject.java @@ -4,8 +4,6 @@ import java.io.IOException; import java.net.Socket; import java.net.UnknownHostException; -import be.nikiroo.utils.Version; - /** * Class used for the client basic handling. *

@@ -16,9 +14,7 @@ import be.nikiroo.utils.Version; */ public class ConnectActionClientObject extends ConnectActionClient { /** - * Create a new {@link ConnectActionClientObject} with the current - * application version (see {@link Version#getCurrentVersion()}) as the - * client version. + * Create a new {@link ConnectActionClientObject} . * * @param s * the socket to bind to @@ -31,9 +27,7 @@ public class ConnectActionClientObject extends ConnectActionClient { } /** - * Create a new {@link ConnectActionClientObject} with the current - * application version (see {@link Version#getCurrentVersion()}) as the - * client version. + * Create a new {@link ConnectActionClientObject}. * * @param host * the host to bind to @@ -56,47 +50,6 @@ public class ConnectActionClientObject extends ConnectActionClient { super(host, port, key); } - /** - * Create a new {@link ConnectActionClientObject}. - * - * @param host - * the host to bind to - * @param port - * the port to bind to - * @param key - * an optional key to encrypt all the communications (if NULL, - * everything will be sent in clear text) - * @param version - * the client version - * - * @throws IOException - * in case of I/O error - * @throws UnknownHostException - * if the IP address of the host could not be determined - * @throws IllegalArgumentException - * if the port parameter is outside the specified range of valid - * port values, which is between 0 and 65535, inclusive - */ - public ConnectActionClientObject(String host, int port, String key, - Version version) throws IOException { - super(host, port, key, version); - } - - /** - * Create a new {@link ConnectActionClientObject}. - * - * @param s - * the socket to bind to - * @param version - * the client version - * @param key - * an optional key to encrypt all the communications (if NULL, - * everything will be sent in clear text) - */ - public ConnectActionClientObject(Socket s, String key, Version version) { - super(s, key, version); - } - /** * Serialise and send the given object to the server (and return the * deserialised answer).