Search in sources :

Example 1 with HistogramAggregationBuilder

use of org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder in project fess by codelibs.

the class BsPathMappingCA method setCreatedTime_Histogram.

public void setCreatedTime_Histogram(String name, ConditionOptionCall<HistogramAggregationBuilder> opLambda, OperatorCall<BsPathMappingCA> aggsLambda) {
    HistogramAggregationBuilder builder = regHistogramA(name, "createdTime");
    if (opLambda != null) {
        opLambda.callback(builder);
    }
    if (aggsLambda != null) {
        PathMappingCA ca = new PathMappingCA();
        aggsLambda.callback(ca);
        ca.getAggregationBuilderList().forEach(builder::subAggregation);
    }
}
Also used : HistogramAggregationBuilder(org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder) PathMappingCA(org.codelibs.fess.es.config.cbean.ca.PathMappingCA)

Example 2 with HistogramAggregationBuilder

use of org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder in project fess by codelibs.

the class BsPathMappingCA method setUpdatedTime_Histogram.

public void setUpdatedTime_Histogram(String name, ConditionOptionCall<HistogramAggregationBuilder> opLambda, OperatorCall<BsPathMappingCA> aggsLambda) {
    HistogramAggregationBuilder builder = regHistogramA(name, "updatedTime");
    if (opLambda != null) {
        opLambda.callback(builder);
    }
    if (aggsLambda != null) {
        PathMappingCA ca = new PathMappingCA();
        aggsLambda.callback(ca);
        ca.getAggregationBuilderList().forEach(builder::subAggregation);
    }
}
Also used : HistogramAggregationBuilder(org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder) PathMappingCA(org.codelibs.fess.es.config.cbean.ca.PathMappingCA)

Example 3 with HistogramAggregationBuilder

use of org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder in project fess by codelibs.

the class BsPathMappingCA method setSortOrder_Histogram.

public void setSortOrder_Histogram(String name, ConditionOptionCall<HistogramAggregationBuilder> opLambda, OperatorCall<BsPathMappingCA> aggsLambda) {
    HistogramAggregationBuilder builder = regHistogramA(name, "sortOrder");
    if (opLambda != null) {
        opLambda.callback(builder);
    }
    if (aggsLambda != null) {
        PathMappingCA ca = new PathMappingCA();
        aggsLambda.callback(ca);
        ca.getAggregationBuilderList().forEach(builder::subAggregation);
    }
}
Also used : HistogramAggregationBuilder(org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder) PathMappingCA(org.codelibs.fess.es.config.cbean.ca.PathMappingCA)

Example 4 with HistogramAggregationBuilder

use of org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder in project fess by codelibs.

the class BsRelatedContentCA method setCreatedTime_Histogram.

public void setCreatedTime_Histogram(String name, ConditionOptionCall<HistogramAggregationBuilder> opLambda, OperatorCall<BsRelatedContentCA> aggsLambda) {
    HistogramAggregationBuilder builder = regHistogramA(name, "createdTime");
    if (opLambda != null) {
        opLambda.callback(builder);
    }
    if (aggsLambda != null) {
        RelatedContentCA ca = new RelatedContentCA();
        aggsLambda.callback(ca);
        ca.getAggregationBuilderList().forEach(builder::subAggregation);
    }
}
Also used : HistogramAggregationBuilder(org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder) RelatedContentCA(org.codelibs.fess.es.config.cbean.ca.RelatedContentCA)

Example 5 with HistogramAggregationBuilder

use of org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder in project fess by codelibs.

the class BsLabelTypeCA method setUpdatedTime_Histogram.

public void setUpdatedTime_Histogram(String name, ConditionOptionCall<HistogramAggregationBuilder> opLambda, OperatorCall<BsLabelTypeCA> aggsLambda) {
    HistogramAggregationBuilder builder = regHistogramA(name, "updatedTime");
    if (opLambda != null) {
        opLambda.callback(builder);
    }
    if (aggsLambda != null) {
        LabelTypeCA ca = new LabelTypeCA();
        aggsLambda.callback(ca);
        ca.getAggregationBuilderList().forEach(builder::subAggregation);
    }
}
Also used : HistogramAggregationBuilder(org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder) LabelTypeCA(org.codelibs.fess.es.config.cbean.ca.LabelTypeCA)

Aggregations

HistogramAggregationBuilder (org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder)92 FileConfigCA (org.codelibs.fess.es.config.cbean.ca.FileConfigCA)10 WebConfigCA (org.codelibs.fess.es.config.cbean.ca.WebConfigCA)10 DateHistogramAggregationBuilder (org.opensearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder)9 ScheduledJobCA (org.codelibs.fess.es.config.cbean.ca.ScheduledJobCA)6 DataConfigCA (org.codelibs.fess.es.config.cbean.ca.DataConfigCA)5 SearchLogCA (org.codelibs.fess.es.log.cbean.ca.SearchLogCA)5 KeyMatchCA (org.codelibs.fess.es.config.cbean.ca.KeyMatchCA)4 AccessTokenCA (org.codelibs.fess.es.config.cbean.ca.AccessTokenCA)3 BoostDocumentRuleCA (org.codelibs.fess.es.config.cbean.ca.BoostDocumentRuleCA)3 DuplicateHostCA (org.codelibs.fess.es.config.cbean.ca.DuplicateHostCA)3 ElevateWordCA (org.codelibs.fess.es.config.cbean.ca.ElevateWordCA)3 FileAuthenticationCA (org.codelibs.fess.es.config.cbean.ca.FileAuthenticationCA)3 JobLogCA (org.codelibs.fess.es.config.cbean.ca.JobLogCA)3 LabelTypeCA (org.codelibs.fess.es.config.cbean.ca.LabelTypeCA)3 PathMappingCA (org.codelibs.fess.es.config.cbean.ca.PathMappingCA)3 RelatedContentCA (org.codelibs.fess.es.config.cbean.ca.RelatedContentCA)3 RoleTypeCA (org.codelibs.fess.es.config.cbean.ca.RoleTypeCA)3 WebAuthenticationCA (org.codelibs.fess.es.config.cbean.ca.WebAuthenticationCA)3 BadWordCA (org.codelibs.fess.es.config.cbean.ca.BadWordCA)2