Skip to content

Commit

Permalink
Merge pull request #238 from scireum/tbi/se4893-param
Browse files Browse the repository at this point in the history
Adds getter and fixes an other one
  • Loading branch information
andyHa authored Jan 14, 2019
2 parents 513339b + 6127ec5 commit c35640d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/main/java/sirius/biz/jobs/params/VirtualObjectParameter.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,15 @@ public VirtualObjectParameter withDefaultName(String path) {
return this;
}

/**
* Getter of the default file path
*
* @return the set default file path
*/
public String getDefaultFilePath() {
return defaultFilePath;
}

@Override
public String getTemplateName() {
return "/templates/jobs/params/virtual-object-autocomplete.html.pasta";
Expand All @@ -117,7 +126,7 @@ public String getTemplateName() {
* @return the bucketName name to be used
*/
public String getBucketName() {
return DEFAULT_BUCKET;
return bucketName;
}

/**
Expand Down

0 comments on commit c35640d

Please sign in to comment.