Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-20103] Make parameter value available in API
  • Loading branch information
daniel-beck committed Oct 3, 2014
1 parent 14e5ca4 commit 9bc8adb
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 9bc8adb

Please sign in to comment.