Package com.cloudera.api.model

Examples of com.cloudera.api.model.ApiCommand


   @Override
   public ApiBulkCommandList startCommand(ApiRoleNameList strings) {
      System.out.println("calling " + this.getClass().getInterfaces()[0].getName() + "#" + Thread.currentThread().getStackTrace()[1].getMethodName());
      ApiBulkCommandList commands = new ApiBulkCommandList();
      ApiCommand command = new ApiCommand();
      command.setName("start role command");
      command.setId(1L);
      commands.add(command);
      return commands;
   }
View Full Code Here

TOP

Related Classes of com.cloudera.api.model.ApiCommand

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.