public function label($langcode = NULL) {
$label = $this
->getSourceLabel() ?: parent::label();
if ($label && strlen($label) > Job::LABEL_MAX_LENGTH) {
$label = Unicode::truncate($label, Job::LABEL_MAX_LENGTH, TRUE);
}
return $label;
}