Package org.exoplatform.frameworks.ftpclient.commands

Examples of org.exoplatform.frameworks.ftpclient.commands.CmdNoop


      log.info("Test...");

      FtpClientSession client = FtpTestConfig.getTestFtpClient();
      client.connect();

      assertEquals(FtpConst.Replyes.REPLY_200, client.executeCommand(new CmdNoop()));

      client.close();

      log.info("Complete.");
   }
View Full Code Here


      log.info("Test...");

      FtpClientSession client = FtpTestConfig.getTestFtpClient();
      client.connect();

      CmdNoop cmdNoop = new CmdNoop();
      assertEquals(FtpConst.Replyes.REPLY_200, client.executeCommand(cmdNoop));

      client.close();
      log.info("Complete.\r\n");
   }
View Full Code Here

TOP

Related Classes of org.exoplatform.frameworks.ftpclient.commands.CmdNoop

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.