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

com.alibaba.antx.config.descriptor.ConfigProperty Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
/*
 * Copyright (c) 2002-2012 Alibaba Group Holding Limited.
 * 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.alibaba.antx.config.descriptor;

import java.util.LinkedList;
import java.util.List;

import com.alibaba.antx.config.descriptor.validator.RequiredValidator;

public class ConfigProperty {
    private ConfigGroup group;
    private String      name;
    private String      defaultValue;
    private String      description;
    private boolean               required   = true;
    private List validators = new LinkedList();

    public ConfigDescriptor getConfigDescriptor() {
        return getConfigGroup().getConfigDescriptor();
    }

    public ConfigGroup getConfigGroup() {
        return group;
    }

    public void setConfigGroup(ConfigGroup group) {
        this.group = group;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getDefaultValue() {
        return defaultValue;
    }

    public void setDefaultValue(String defaultValue) {
        this.defaultValue = defaultValue;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public void setRequired(boolean required) {
        this.required = required;
    }

    public List getValidators() {
        return validators;
    }

    public void addValidator(ConfigValidator validator) {
        validator.setConfigProperty(this);
        validators.add(validator);

        if (validator instanceof RequiredValidator) {
            this.required = true;
        }
    }

    public void afterPropertiesSet() {
        // RequiredValidator是一个特殊的validator,默认情况下required=true
        if (required) {
            addValidator(new RequiredValidator());
        }
    }

    public boolean isRequired() {
        return required;
    }

    @Override
    public String toString() {
        return "Property[name=" + getName() + "]";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy