com.tencent.trpc.admin.GlobalConfigOverview Maven / Gradle / Ivy
/*
* Tencent is pleased to support the open source community by making tRPC available.
*
* Copyright (C) 2023 THL A29 Limited, a Tencent company.
* All rights reserved.
*
* If you have downloaded a copy of the tRPC source code from Tencent,
* please note that tRPC source code is licensed under the Apache 2.0 License,
* A copy of the Apache 2.0 License can be found in the LICENSE file.
*/
package com.tencent.trpc.admin;
/**
* Global configuration view
*/
public class GlobalConfigOverview {
private String namespace;
private String envName;
private String containerName;
public GlobalConfigOverview() {
}
public String getNamespace() {
return namespace;
}
public void setNamespace(String namespace) {
this.namespace = namespace;
}
public String getContainerName() {
return containerName;
}
public void setContainerName(String containerName) {
this.containerName = containerName;
}
public String getEnvName() {
return envName;
}
public void setEnvName(String envName) {
this.envName = envName;
}
@Override
public String toString() {
return "GlobalConfigOverview{" + "namespace='" + namespace + '\'' + ", envName='" + envName
+ '\'' + ", containerName='" + containerName + '\'' + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy