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

hu.icellmobilsoft.coffee.module.configdoc.data.DocData Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
/*-
 * #%L
 * Coffee
 * %%
 * Copyright (C) 2020 - 2022 i-Cell Mobilsoft Zrt.
 * %%
 * 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.
 * #L%
 */
package hu.icellmobilsoft.coffee.module.configdoc.data;

import hu.icellmobilsoft.coffee.module.configdoc.ConfigDoc;

/**
 * Data class for the collected {@link ConfigDoc} annotation data.
 *
 * @author martin.nagy
 * @since 1.9.0
 */
public class DocData {
    private final String key;
    private final String source;
    private final String description;
    private final String defaultValue;
    private final String since;

    /**
     * Creates a {@code DocData} instance with the given arguments
     * 
     * @param key
     *            the configuration key
     * @param source
     *            the source class where the configuration key can be found
     * @param description
     *            the description of the configuration key
     * @param defaultValue
     *            the default value of the configuration key
     * @param since
     *            the version since the configuration key available
     */
    public DocData(String key, String source, String description, String defaultValue, String since) {
        this.key = key;
        this.source = source;
        this.description = description;
        this.defaultValue = defaultValue;
        this.since = since;
    }

    /**
     * Returns the configuration key
     * 
     * @return the configuration key
     */
    public String getKey() {
        return key;
    }

    /**
     * Returns the source class where the configuration key can be found
     * 
     * @return the source class where the configuration key can be found
     */
    public String getSource() {
        return source;
    }

    /**
     * Returns the description of the configuration key
     * 
     * @return the description of the configuration key
     */
    public String getDescription() {
        return description;
    }

    /**
     * Returns the default value of the configuration key
     * 
     * @return the default value of the configuration key
     */
    public String getDefaultValue() {
        return defaultValue;
    }

    /**
     * Returns the version since the configuration key available
     *
     * @return the version since the configuration key available
     * @since 1.10.0
     */
    public String getSince() {
        return since;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy