In my plugin I need to dynamically update the values of a bunch of String parameters that the user specified when building a job
ParametersAction params = project.getAction(ParametersAction.class); // How do we update existing parameters? StringParameterValue parameter = (StringParameterValue) params .getParameter("MyParam"); // Fails since value is final :-( parameter.value = "asd"; how do I update values of existing parameters? -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.