From d0c0e6904e1f33af0227eec8ee151b7396ca1d01 Mon Sep 17 00:00:00 2001 From: Dimitrios Athanasiou Date: Tue, 29 Nov 2016 18:30:15 +0000 Subject: [PATCH] Move RestGetInfluencersAction under results package Original commit: elastic/x-pack-elasticsearch@281d4327328f217727927f5b9be48e7e58f5b2f8 --- .../java/org/elasticsearch/xpack/prelert/PrelertPlugin.java | 2 +- .../rest/{influencers => results}/RestGetInfluencersAction.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename elasticsearch/src/main/java/org/elasticsearch/xpack/prelert/rest/{influencers => results}/RestGetInfluencersAction.java (98%) diff --git a/elasticsearch/src/main/java/org/elasticsearch/xpack/prelert/PrelertPlugin.java b/elasticsearch/src/main/java/org/elasticsearch/xpack/prelert/PrelertPlugin.java index 0d2193e2859..032e5e72c1e 100644 --- a/elasticsearch/src/main/java/org/elasticsearch/xpack/prelert/PrelertPlugin.java +++ b/elasticsearch/src/main/java/org/elasticsearch/xpack/prelert/PrelertPlugin.java @@ -75,7 +75,7 @@ import org.elasticsearch.xpack.prelert.job.usage.UsageReporter; import org.elasticsearch.xpack.prelert.rest.data.RestPostDataAction; import org.elasticsearch.xpack.prelert.rest.data.RestPostDataCloseAction; import org.elasticsearch.xpack.prelert.rest.data.RestPostDataFlushAction; -import org.elasticsearch.xpack.prelert.rest.influencers.RestGetInfluencersAction; +import org.elasticsearch.xpack.prelert.rest.results.RestGetInfluencersAction; import org.elasticsearch.xpack.prelert.rest.job.RestDeleteJobAction; import org.elasticsearch.xpack.prelert.rest.job.RestGetJobsAction; import org.elasticsearch.xpack.prelert.rest.job.RestPauseJobAction; diff --git a/elasticsearch/src/main/java/org/elasticsearch/xpack/prelert/rest/influencers/RestGetInfluencersAction.java b/elasticsearch/src/main/java/org/elasticsearch/xpack/prelert/rest/results/RestGetInfluencersAction.java similarity index 98% rename from elasticsearch/src/main/java/org/elasticsearch/xpack/prelert/rest/influencers/RestGetInfluencersAction.java rename to elasticsearch/src/main/java/org/elasticsearch/xpack/prelert/rest/results/RestGetInfluencersAction.java index c88cb7a671a..e49b2037a83 100644 --- a/elasticsearch/src/main/java/org/elasticsearch/xpack/prelert/rest/influencers/RestGetInfluencersAction.java +++ b/elasticsearch/src/main/java/org/elasticsearch/xpack/prelert/rest/results/RestGetInfluencersAction.java @@ -3,7 +3,7 @@ * or more contributor license agreements. Licensed under the Elastic License; * you may not use this file except in compliance with the Elastic License. */ -package org.elasticsearch.xpack.prelert.rest.influencers; +package org.elasticsearch.xpack.prelert.rest.results; import org.elasticsearch.client.node.NodeClient; import org.elasticsearch.common.bytes.BytesReference;