Initial commit for AAI-UI(sparky-backend)
[aai/sparky-be.git] / src / test / java / org / openecomp / sparky / dal / elasticsearch / entity / AutoSuggestElasticHitEntity.java
1 /* 
2 * ============LICENSE_START=======================================================
3 * SPARKY (inventory UI service)
4 * ================================================================================
5 * Copyright © 2017 AT&T Intellectual Property.
6 * Copyright © 2017 Amdocs
7 * All rights reserved.
8 * ================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12
13 *      http://www.apache.org/licenses/LICENSE-2.0
14
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
21
22 * ECOMP and OpenECOMP are trademarks
23 * and service marks of AT&T Intellectual Property.
24 */
25 package org.openecomp.sparky.dal.elasticsearch.entity;
26
27 import com.fasterxml.jackson.annotation.JsonProperty;
28
29 public class AutoSuggestElasticHitEntity {
30
31   @JsonProperty("_index")
32   private String index;
33
34   @JsonProperty("_type")
35   private String type;
36
37   @JsonProperty("_id")
38   private String id;
39
40   @JsonProperty("_score")
41   private String score;
42
43   @JsonProperty("_source")
44   private AutoSuggestDocumentEntity source;
45
46   public String getIndex() {
47     return index;
48   }
49
50   public void setIndex(String index) {
51     this.index = index;
52   }
53
54   public String getType() {
55     return type;
56   }
57
58   public void setType(String type) {
59     this.type = type;
60   }
61
62   public String getId() {
63     return id;
64   }
65
66   public void setId(String id) {
67     this.id = id;
68   }
69
70   public String getScore() {
71     return score;
72   }
73
74   public void setScore(String score) {
75     this.score = score;
76   }
77
78   public AutoSuggestDocumentEntity getSource() {
79     return source;
80   }
81
82   public void setSource(AutoSuggestDocumentEntity source) {
83     this.source = source;
84   }
85
86
87 }