Package co.cask.cdap.proto

Examples of co.cask.cdap.proto.DatasetRecord


  private static ProgramRecord makeProgramRecord (String appId, ProgramSpecification spec, ProgramType type) {
    return new ProgramRecord(type, appId, spec.getName(), spec.getName(), spec.getDescription());
  }

  private static DatasetRecord makeDataSetRecord(String name, String classname) {
    return new DatasetRecord("Dataset", name, name, classname);
  }
View Full Code Here

TOP

Related Classes of co.cask.cdap.proto.DatasetRecord

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.