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

Java.ServerVariable.mustache Maven / Gradle / Ivy

There is a newer version: 6.2.1.2
Show newest version
package {{invokerPackage}};

import java.util.HashSet;

/**
 * Representing a Server Variable for server URL template substitution.
 */
public class ServerVariable {
    public String description;
    public String defaultValue;
    public HashSet enumValues = null;

    /**
     * @param description A description for the server variable.
     * @param defaultValue The default value to use for substitution.
     * @param enumValues An enumeration of string values to be used if the substitution options are from a limited set.
     */
    public ServerVariable(String description, String defaultValue, HashSet enumValues) {
        this.description = description;
        this.defaultValue = defaultValue;
        this.enumValues = enumValues;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy