/hudson-core/src/main/java/hudson/model/JobParameterValue.java

http://github.com/hudson/hudson · Java · 54 lines · 20 code · 6 blank · 28 comment · 0 complexity · 1e54f2c70a545b2209418a329b894a48 MD5 · raw file

  1. /*
  2. * The MIT License
  3. *
  4. * Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Tom Huybrechts
  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.model;
  25. import hudson.EnvVars;
  26. import org.kohsuke.stapler.DataBoundConstructor;
  27. import java.util.Locale;
  28. public class JobParameterValue extends ParameterValue {
  29. //TODO: review and check whether we can do it private
  30. public final Job job;
  31. @DataBoundConstructor
  32. public JobParameterValue(String name, Job job) {
  33. super(name);
  34. this.job = job;
  35. }
  36. public Job getJob() {
  37. return job;
  38. }
  39. /**
  40. * Exposes the name/value as an environment variable.
  41. */
  42. @Override
  43. public void buildEnvVars(AbstractBuild<?,?> build, EnvVars env) {
  44. // TODO: check with Tom if this is really what he had in mind
  45. env.put(name,job.toString());
  46. env.put(name.toUpperCase(Locale.ENGLISH),job.toString()); // backward compatibility pre 1.345
  47. }
  48. }