Java tutorial
/* * The MIT License (MIT) * * Copyright (c) <2014-2015> <Ioannis Moutsatsos, Bruno P. Kinoshita> * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package org.biouno.unochoice; import hudson.Extension; import org.apache.commons.lang.StringUtils; import org.biouno.unochoice.model.Script; import org.kohsuke.stapler.DataBoundConstructor; /** * A parameter that renders its options as a choice (select) HTML component. * * @author Bruno P. Kinoshita * @since 0.1 */ public class ChoiceParameter extends AbstractScriptableParameter { /* * Serial UID. */ private static final long serialVersionUID = -4449319038169585222L; /** * Choice type. */ private final String choiceType; /** * Filter flag. */ private final Boolean filterable; /** * Constructor called from Jelly with parameters. * * @param name name * @param description description * @param script script * @param choiceType choice type * @param filterable filter flag * @deprecated see JENKINS-32149 */ public ChoiceParameter(String name, String description, Script script, String choiceType, Boolean filterable) { super(name, description, script); this.choiceType = StringUtils.defaultIfBlank(choiceType, PARAMETER_TYPE_SINGLE_SELECT); this.filterable = filterable; } /** * Constructor called from Jelly with parameters. * * @param name name * @param description description * @param randomName parameter random generated name (uuid) * @param script script * @param choiceType choice type * @param filterable filter flag */ @DataBoundConstructor public ChoiceParameter(String name, String description, String randomName, Script script, String choiceType, Boolean filterable) { super(name, description, randomName, script); this.choiceType = StringUtils.defaultIfBlank(choiceType, PARAMETER_TYPE_SINGLE_SELECT); this.filterable = filterable; } /* * (non-Javadoc) * @see org.biouno.unochoice.AbstractUnoChoiceParameter#getChoiceType() */ @Override public String getChoiceType() { return this.choiceType; } /** * Gets the filter flag. * * @return filter flag */ public Boolean getFilterable() { return filterable; } // --- descriptor @Extension public static final class DescriptImpl extends UnoChoiceParameterDescriptor { @Override public String getDisplayName() { return "Active Choices Parameter"; } } }