/hudson-core/src/main/java/hudson/matrix/AxisDescriptor.java

http://github.com/hudson/hudson · Java · 67 lines · 27 code · 6 blank · 34 comment · 1 complexity · 9bbd223c4067891d576e663a8aa890c3 MD5 · raw file

  1. /*
  2. * The MIT License
  3. *
  4. * Copyright (c) 2010, InfraDNA, Inc.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. package hudson.matrix;
  25. import hudson.Util;
  26. import hudson.model.Descriptor;
  27. import hudson.model.Failure;
  28. import hudson.model.Hudson;
  29. import hudson.util.FormValidation;
  30. import org.kohsuke.stapler.QueryParameter;
  31. /**
  32. * {@link Descriptor} for {@link Axis}
  33. *
  34. * @author Kohsuke Kawaguchi
  35. */
  36. public abstract class AxisDescriptor extends Descriptor<Axis> {
  37. protected AxisDescriptor(Class<? extends Axis> clazz) {
  38. super(clazz);
  39. }
  40. protected AxisDescriptor() {
  41. }
  42. /**
  43. * Return false if the user shouldn't be able to create thie axis from the UI.
  44. */
  45. public boolean isInstantiable() {
  46. return true;
  47. }
  48. /**
  49. * Makes sure that the given name is good as a axis name.
  50. */
  51. public FormValidation doCheckName(@QueryParameter String value) {
  52. if(Util.fixEmpty(value)==null)
  53. return FormValidation.ok();
  54. try {
  55. Hudson.checkGoodName(value);
  56. return FormValidation.ok();
  57. } catch (Failure e) {
  58. return FormValidation.error(e.getMessage());
  59. }
  60. }
  61. }