org.elasticsearch.index.query.IdsQueryBuilder Java Examples

The following examples show how to use org.elasticsearch.index.query.IdsQueryBuilder. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BsScheduledJobCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
 
Example #2
Source File: BsFileAuthenticationCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
 
Example #3
Source File: BsRoleTypeCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #4
Source File: BsCrawlingInfoParamCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
 
Example #5
Source File: BsWebAuthenticationCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #6
Source File: BsWebAuthenticationCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
 
Example #7
Source File: BsCrawlingInfoParamCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #8
Source File: BsBadWordCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
 
Example #9
Source File: BsBadWordCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #10
Source File: BsRelatedQueryCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
 
Example #11
Source File: BsRelatedQueryCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #12
Source File: BsAccessTokenCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
 
Example #13
Source File: BsAccessTokenCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #14
Source File: EsAbstractConditionQuery.java    From fess with Apache License 2.0 4 votes vote down vote up
protected IdsQueryBuilder regIdsQ(Collection<String> values) {
    checkEsInvalidQueryCollection("_id", values);
    IdsQueryBuilder idsQuery = QueryBuilders.idsQuery().addIds(values.toArray(new String[values.size()]));
    regQ(idsQuery);
    return idsQuery;
}
 
Example #15
Source File: BsFileAuthenticationCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #16
Source File: BsScheduledJobCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #17
Source File: BsPathMappingCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #18
Source File: BsPathMappingCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
 
Example #19
Source File: BsFailureUrlCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #20
Source File: BsFailureUrlCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
 
Example #21
Source File: BsRelatedContentCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #22
Source File: BsRelatedContentCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
 
Example #23
Source File: BsLabelTypeCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #24
Source File: BsLabelTypeCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
 
Example #25
Source File: BsThumbnailQueueCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #26
Source File: BsThumbnailQueueCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
 
Example #27
Source File: BsRequestHeaderCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #28
Source File: BsRequestHeaderCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}
 
Example #29
Source File: BsWebConfigCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_InScope(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    setId_Terms(idList, opLambda);
}
 
Example #30
Source File: BsWebConfigCQ.java    From fess with Apache License 2.0 4 votes vote down vote up
public void setId_Terms(Collection<String> idList, ConditionOptionCall<IdsQueryBuilder> opLambda) {
    IdsQueryBuilder builder = regIdsQ(idList);
    if (opLambda != null) {
        opLambda.callback(builder);
    }
}