this.attemptId = attemptId;
}
@Override
public Container getMasterContainer() {
ApplicationAttemptStateDataProtoOrBuilder p = viaProto ? proto : builder;
if(masterContainer != null) {
return masterContainer;
}
if (!p.hasMasterContainer()) {
return null;
}
masterContainer = new ContainerPBImpl(p.getMasterContainer());
return masterContainer;
}