All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.huaweicloud.nacos.config.client.PropertyConfigItem Maven / Gradle / Ivy

/*

 * Copyright (C) 2020-2024 Huawei Technologies Co., Ltd. All rights reserved.

 * Licensed 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 com.huaweicloud.nacos.config.client;

public class PropertyConfigItem {
  private long id;

  private String tenant;

  private String appName;

  /**
   * config file type(xml,json,yaml,text,html)
   */
  private String type;

  private String dataId;

  private String group;

  /**
   * config content
   */
  private String content;

  private String md5;

  private String encryptedDataKey;

  public long getId() {
    return id;
  }

  public void setId(long id) {
    this.id = id;
  }

  public String getTenant() {
    return tenant;
  }

  public void setTenant(String tenant) {
    this.tenant = tenant;
  }

  public String getAppName() {
    return appName;
  }

  public void setAppName(String appName) {
    this.appName = appName;
  }

  public String getType() {
    return type;
  }

  public void setType(String type) {
    this.type = type;
  }

  public String getDataId() {
    return dataId;
  }

  public void setDataId(String dataId) {
    this.dataId = dataId;
  }

  public String getGroup() {
    return group;
  }

  public void setGroup(String group) {
    this.group = group;
  }

  public String getContent() {
    return content;
  }

  public void setContent(String content) {
    this.content = content;
  }

  public String getMd5() {
    return md5;
  }

  public void setMd5(String md5) {
    this.md5 = md5;
  }

  public String getEncryptedDataKey() {
    return encryptedDataKey;
  }

  public void setEncryptedDataKey(String encryptedDataKey) {
    this.encryptedDataKey = encryptedDataKey;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy