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

org.zodic.kubernetes.confcenter.SecretsConfigInfo Maven / Gradle / Ivy

The newest version!
package org.zodic.kubernetes.confcenter;

import java.util.List;
import java.util.Map;

import org.zodiac.sdk.toolkit.util.collection.CollUtil;

public class SecretsConfigInfo extends AbstractConfCenterInfo {

    private static final String TARGET = "Secret";

    private boolean enableApi = false;

    private List paths = CollUtil.linkedList();

    private Map labels = CollUtil.map();

    public SecretsConfigInfo() {
    }

    public boolean isEnableApi() {
        return this.enableApi;
    }

    public void setEnableApi(boolean enableApi) {
        this.enableApi = enableApi;
    }

    public List getPaths() {
        return this.paths;
    }

    public void setPaths(List paths) {
        this.paths = paths;
    }

    public Map getLabels() {
        return this.labels;
    }

    public void setLabels(Map labels) {
        this.labels = labels;
    }

    @Override
    public String getConfigurationTarget() {
        return TARGET;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy