File tree 5 files changed +6
-3
lines changed
core/src/main/java/org/elasticsearch/xpack/core/enrich
main/java/org/elasticsearch/xpack/enrich
test/java/org/elasticsearch/xpack/enrich
5 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 4
4
* 2.0; you may not use this file except in compliance with the Elastic License
5
5
* 2.0.
6
6
*/
7
- package org .elasticsearch .xpack .enrich ;
7
+ package org .elasticsearch .xpack .core . enrich ;
8
8
9
9
import org .elasticsearch .ElasticsearchParseException ;
10
10
import org .elasticsearch .TransportVersion ;
17
17
import org .elasticsearch .xcontent .ParseField ;
18
18
import org .elasticsearch .xcontent .ToXContent ;
19
19
import org .elasticsearch .xcontent .XContentParser ;
20
- import org .elasticsearch .xpack .core .enrich .EnrichPolicy ;
21
20
22
21
import java .io .IOException ;
23
22
import java .util .Collections ;
32
31
*/
33
32
public final class EnrichMetadata extends AbstractNamedDiffable <Metadata .Custom > implements Metadata .Custom {
34
33
35
- static final String TYPE = "enrich" ;
34
+ public static final String TYPE = "enrich" ;
36
35
37
36
static final ParseField POLICIES = new ParseField ("policies" );
38
37
Original file line number Diff line number Diff line change 42
42
import org .elasticsearch .xpack .core .XPackPlugin ;
43
43
import org .elasticsearch .xpack .core .action .XPackInfoFeatureAction ;
44
44
import org .elasticsearch .xpack .core .action .XPackUsageFeatureAction ;
45
+ import org .elasticsearch .xpack .core .enrich .EnrichMetadata ;
45
46
import org .elasticsearch .xpack .core .enrich .action .DeleteEnrichPolicyAction ;
46
47
import org .elasticsearch .xpack .core .enrich .action .EnrichStatsAction ;
47
48
import org .elasticsearch .xpack .core .enrich .action .ExecuteEnrichPolicyAction ;
Original file line number Diff line number Diff line change 20
20
import org .elasticsearch .cluster .service .ClusterService ;
21
21
import org .elasticsearch .common .Strings ;
22
22
import org .elasticsearch .core .SuppressForbidden ;
23
+ import org .elasticsearch .xpack .core .enrich .EnrichMetadata ;
23
24
import org .elasticsearch .xpack .core .enrich .EnrichPolicy ;
24
25
25
26
import java .util .Arrays ;
Original file line number Diff line number Diff line change 11
11
import org .elasticsearch .test .AbstractChunkedSerializingTestCase ;
12
12
import org .elasticsearch .xcontent .XContentParser ;
13
13
import org .elasticsearch .xcontent .XContentType ;
14
+ import org .elasticsearch .xpack .core .enrich .EnrichMetadata ;
14
15
import org .elasticsearch .xpack .core .enrich .EnrichPolicy ;
15
16
16
17
import java .io .IOException ;
Original file line number Diff line number Diff line change 31
31
import org .elasticsearch .threadpool .TestThreadPool ;
32
32
import org .elasticsearch .threadpool .ThreadPool ;
33
33
import org .elasticsearch .xcontent .XContentType ;
34
+ import org .elasticsearch .xpack .core .enrich .EnrichMetadata ;
34
35
import org .elasticsearch .xpack .core .enrich .EnrichPolicy ;
35
36
import org .elasticsearch .xpack .core .enrich .action .ExecuteEnrichPolicyAction ;
36
37
import org .elasticsearch .xpack .enrich .action .InternalExecutePolicyAction ;
You can’t perform that action at this time.
0 commit comments