blob: 3059a581c61f5b6e5e91562fbad5140427979be2 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.servicecomb.config.kie.client.model;
import com.fasterxml.jackson.annotation.JsonAlias;
import java.util.HashMap;
import java.util.Map;
public class KVDoc {
private String id;
private String check;
private String domain;
private String key;
@JsonAlias("label_id")
private String labelId;
private Map<String, String> labels = new HashMap<>();
private String value;
@JsonAlias("value_type")
private String valueType;
private String status;
@JsonAlias("update_time")
private long updateTime;
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getCheck() {
return check;
}
public String getDomain() {
return domain;
}
public String getLabelId() {
return labelId;
}
public Map<String, String> getLabels() {
return labels;
}
public String getValue() {
return value;
}
public void setCheck(String check) {
this.check = check;
}
public void setDomain(String domain) {
this.domain = domain;
}
public void setLabelId(String labelId) {
this.labelId = labelId;
}
public void setLabels(Map<String, String> labels) {
this.labels = labels;
}
public void setValueType(String valueType) {
this.valueType = valueType;
}
public void setValue(String value) {
this.value = value;
}
public String getValueType() {
return valueType;
}
public long getUpdateTime() {
return updateTime;
}
public void setUpdateTime(long updateTime) {
this.updateTime = updateTime;
}
}