2015-02-25 22:05:11 +02:00
|
|
|
/*
|
|
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
|
|
* or more contributor license agreements. Licensed under the Elastic License;
|
|
|
|
* you may not use this file except in compliance with the Elastic License.
|
|
|
|
*/
|
2015-03-24 13:06:06 +01:00
|
|
|
package org.elasticsearch.watcher.input;
|
2015-02-25 22:05:11 +02:00
|
|
|
|
|
|
|
import org.elasticsearch.action.search.SearchRequest;
|
|
|
|
import org.elasticsearch.action.search.SearchRequestBuilder;
|
2015-03-26 23:03:31 +01:00
|
|
|
import org.elasticsearch.watcher.input.http.HttpInput;
|
2015-03-24 13:06:06 +01:00
|
|
|
import org.elasticsearch.watcher.input.search.SearchInput;
|
|
|
|
import org.elasticsearch.watcher.input.simple.SimpleInput;
|
2015-04-01 17:26:37 +02:00
|
|
|
import org.elasticsearch.watcher.support.http.TemplatedHttpRequest;
|
2015-02-25 22:05:11 +02:00
|
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public final class InputBuilders {
|
|
|
|
|
|
|
|
private InputBuilders() {
|
|
|
|
}
|
|
|
|
|
|
|
|
public static SearchInput.SourceBuilder searchInput(SearchRequest request) {
|
|
|
|
return new SearchInput.SourceBuilder(request);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static SearchInput.SourceBuilder searchInput(SearchRequestBuilder builder) {
|
|
|
|
return searchInput(builder.request());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static SimpleInput.SourceBuilder simpleInput() {
|
|
|
|
return simpleInput(new HashMap<String, Object>());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static SimpleInput.SourceBuilder simpleInput(Map<String, Object> data) {
|
|
|
|
return new SimpleInput.SourceBuilder(data);
|
|
|
|
}
|
2015-03-26 23:03:31 +01:00
|
|
|
|
2015-04-01 17:26:37 +02:00
|
|
|
public static HttpInput.SourceBuilder httpInput(TemplatedHttpRequest.SourceBuilder requestSource) {
|
|
|
|
return new HttpInput.SourceBuilder(requestSource);
|
2015-03-26 23:03:31 +01:00
|
|
|
}
|
2015-02-25 22:05:11 +02:00
|
|
|
}
|