Skip to content

Commit

Permalink
Merge pull request #100 from daniel-beck/JENKINS-20103
Browse files Browse the repository at this point in the history
[FIXED JENKINS-20103] Make parameter value available in API
  • Loading branch information
oleg-nenashev committed Jul 5, 2015
2 parents ab3a078 + 9bc8adb commit f1c2a9c
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -40,8 +40,8 @@
*/
public class ListSubversionTagsParameterValue extends ParameterValue {

@Exported(visibility=3) private String tagsDir; // this att comes from ListSubversionTagsParameterDefinition
@Exported(visibility=3) private String tag;
private String tagsDir; // this att comes from ListSubversionTagsParameterDefinition
private String tag;

@DataBoundConstructor
public ListSubversionTagsParameterValue(String name, String tagsDir, String tag) {
Expand Down Expand Up @@ -86,6 +86,7 @@ public int hashCode() {
return result;
}

@Exported(visibility=3)
public String getTag() {
return tag;
}
Expand All @@ -94,6 +95,7 @@ public void setTag(String tag) {
this.tag = tag;
}

@Exported(visibility=3)
public String getTagsDir() {
return tagsDir;
}
Expand Down

0 comments on commit f1c2a9c

Please sign in to comment.