use of org.apache.hadoop.mapreduce.v2.proto.MRServiceProtos.GetJobReportResponseProtoOrBuilder in project hadoop by apache.
the class GetJobReportResponsePBImpl method getJobReport.
@Override
public JobReport getJobReport() {
GetJobReportResponseProtoOrBuilder p = viaProto ? proto : builder;
if (this.jobReport != null) {
return this.jobReport;
}
if (!p.hasJobReport()) {
return null;
}
this.jobReport = convertFromProtoFormat(p.getJobReport());
return this.jobReport;
}
Aggregations