final File mountPoint = MOUNTPOINT_ARG.getValue();
final InetAddress host = HOST_ARG.getAddress();
final String remoteDirectory = HOST_ARG.getRemoteDirectory();
// Choose the protocol (udp or tcp) the default value it is udp.
final Protocol protocol =
UDP_FLAG.isSet() ? Protocol.UDP : TCP_FLAG.isSet() ? Protocol.TCP : Protocol.UDP;
int uid = USER_ID_ARG.isSet() ? USER_ID_ARG.getValue() : -1;
int gid = GROUP_ID_ARG.isSet() ? GROUP_ID_ARG.getValue() : -1;