error(null, "ジョブフロークラスはpublicで宣言する必要があります");
}
if (Modifier.isAbstract(description.getModifiers())) {
error(null, "ジョブフロークラスはabstractで宣言できません");
}
JobFlow conf = description.getAnnotation(JobFlow.class);
if (conf == null) {
error(null, "ジョブフロークラスには@JobFlow注釈の付与が必要です");
}
return conf;
}