renamed qa package o.e.plugin.ingest to o.e.ingest

This way InternalTemplateService constructor can be set back to package private visibility
This commit is contained in:
javanna 2016-01-07 15:51:52 +01:00 committed by Luca Cavanna
parent 694eeffe92
commit 03fe38681e
10 changed files with 8 additions and 11 deletions

View File

@ -31,7 +31,6 @@ import org.elasticsearch.ingest.PipelineStore;
import org.elasticsearch.threadpool.ThreadPool;
import org.elasticsearch.transport.TransportService;
public class PutPipelineTransportAction extends HandledTransportAction<PutPipelineRequest, IndexResponse> {
private final PipelineStore pipelineStore;

View File

@ -34,7 +34,7 @@ public class InternalTemplateService implements TemplateService {
private final ScriptService scriptService;
public InternalTemplateService(ScriptService scriptService) {
InternalTemplateService(ScriptService scriptService) {
this.scriptService = scriptService;
}

View File

@ -17,7 +17,7 @@
* under the License.
*/
package org.elasticsearch.plugin.ingest;
package org.elasticsearch.ingest;
import org.elasticsearch.ingest.IngestModule;
import org.elasticsearch.ingest.processor.AppendProcessor;

View File

@ -21,7 +21,6 @@ package org.elasticsearch.ingest;
import com.carrotsearch.randomizedtesting.annotations.Name;
import com.carrotsearch.randomizedtesting.annotations.ParametersFactory;
import org.elasticsearch.plugin.ingest.IngestPlugin;
import org.elasticsearch.plugins.Plugin;
import org.elasticsearch.test.rest.ESRestTestCase;
import org.elasticsearch.test.rest.RestTestCandidate;

View File

@ -17,7 +17,7 @@
* under the License.
*/
package org.elasticsearch.plugin.ingest;
package org.elasticsearch.ingest;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.env.Environment;

View File

@ -17,7 +17,7 @@
* under the License.
*/
package org.elasticsearch.plugin.ingest;
package org.elasticsearch.ingest;
import org.elasticsearch.ingest.core.IngestDocument;
import org.elasticsearch.ingest.core.ValueSource;

View File

@ -17,7 +17,7 @@
* under the License.
*/
package org.elasticsearch.plugin.ingest;
package org.elasticsearch.ingest;
import org.elasticsearch.ingest.processor.RemoveProcessor;
import org.hamcrest.CoreMatchers;
@ -35,5 +35,4 @@ public class IngestMustacheRemoveProcessorIT extends AbstractMustacheTests {
RemoveProcessor processor = factory.create(config);
assertThat(processor.getField().execute(Collections.singletonMap("var", "_value")), CoreMatchers.equalTo("field_value"));
}
}

View File

@ -17,7 +17,7 @@
* under the License.
*/
package org.elasticsearch.plugin.ingest;
package org.elasticsearch.ingest;
import org.elasticsearch.ingest.core.IngestDocument;

View File

@ -17,7 +17,7 @@
* under the License.
*/
package org.elasticsearch.plugin.ingest;
package org.elasticsearch.ingest;
import org.elasticsearch.ingest.core.TemplateService;

View File

@ -17,7 +17,7 @@
* under the License.
*/
package org.elasticsearch.plugin.ingest;
package org.elasticsearch.ingest;
import org.elasticsearch.ingest.core.IngestDocument;
import org.elasticsearch.ingest.core.ValueSource;