Package org.apache.hive.hcatalog.templeton

Examples of org.apache.hive.hcatalog.templeton.ExecBean


public class MockExecService implements ExecService {

  public ExecBean run(String program, List<String> args,
            Map<String, String> env) {
    ExecBean bean = new ExecBean();
    bean.stdout = program;
    bean.stderr = args.toString();
    return bean;
  }
View Full Code Here


  @Override
  public ExecBean runUnlimited(String program,
                 List<String> args, Map<String, String> env)
    throws NotAuthorizedException, ExecuteException, IOException {
    ExecBean bean = new ExecBean();
    bean.stdout = program;
    bean.stderr = args.toString();
    return null;
  }
View Full Code Here

TOP

Related Classes of org.apache.hive.hcatalog.templeton.ExecBean

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.