use of org.codelibs.fess.es.config.cbean.ca.DataConfigToRoleCA in project fess by codelibs.
the class BsDataConfigToRoleCA method setRoleTypeId_Missing.
public void setRoleTypeId_Missing(String name, ConditionOptionCall<MissingAggregationBuilder> opLambda, OperatorCall<BsDataConfigToRoleCA> aggsLambda) {
MissingAggregationBuilder builder = regMissingA(name, "roleTypeId");
if (opLambda != null) {
opLambda.callback(builder);
}
if (aggsLambda != null) {
DataConfigToRoleCA ca = new DataConfigToRoleCA();
aggsLambda.callback(ca);
ca.getAggregationBuilderList().forEach(builder::subAggregation);
}
}
Aggregations