Cleanup project's name in Sonar
[aai/search-data-service.git] / src / main / java / org / openecomp / sa / searchdbabstraction / elasticsearch / dao / ElasticSearchOperationStatus.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.openecomp.sa.searchdbabstraction.elasticsearch.dao;
24
25 import com.fasterxml.jackson.annotation.JsonAnyGetter;
26 import com.fasterxml.jackson.annotation.JsonAnySetter;
27
28 import java.util.HashMap;
29 import java.util.Map;
30
31 public class ElasticSearchOperationStatus {
32
33   private String index;
34   private String type;
35   private String id;
36   private String version;
37   private ElasticSearchShardStatus shards;
38   private Integer status;
39   private ElasticSearchError error;
40
41   private Map<String, Object> additionalProperties = new HashMap<String, Object>();
42
43
44   public ElasticSearchError getError() {
45     return error;
46   }
47
48   public void setError(ElasticSearchError error) {
49     this.error = error;
50   }
51
52   public Integer getStatus() {
53     return status;
54   }
55
56   public void setStatus(Integer status) {
57     this.status = status;
58   }
59
60   public ElasticSearchShardStatus getShards() {
61     return shards;
62   }
63
64   public void setShards(ElasticSearchShardStatus shards) {
65     this.shards = shards;
66   }
67
68   public String getIndex() {
69     return index;
70   }
71
72   public void setIndex(String index) {
73     this.index = index;
74   }
75
76   public String getType() {
77     return type;
78   }
79
80   public void setType(String type) {
81     this.type = type;
82   }
83
84   public String getId() {
85     return id;
86   }
87
88   public void setId(String id) {
89     this.id = id;
90   }
91
92   public String getVersion() {
93     return version;
94   }
95
96   public void setVersion(String version) {
97     this.version = version;
98   }
99
100   @JsonAnyGetter
101   public Map<String, Object> getAdditionalProperties() {
102     return additionalProperties;
103   }
104
105   @JsonAnySetter
106   public void setAdditionalProperties(String name, Object value) {
107     additionalProperties.put(name, value);
108   }
109
110   @Override
111   public String toString() {
112     return "ElasticSearchIndexStatus [index=" + index + ", type=" + type + ", id="
113         + id + ", version=" + version + ", shards=" + shards + ", status=" + status + "]";
114   }
115
116
117 }