Missing setter on spring.batch.job.names property

Relates to gh-1249
This commit is contained in:
Stephane Nicoll 2014-07-14 11:36:12 +02:00
parent 8f886e22ce
commit 621b33f7ad
1 changed files with 4 additions and 0 deletions

View File

@ -73,5 +73,9 @@ public class BatchProperties {
public String getNames() {
return names;
}
public void setNames(String names) {
this.names = names;
}
}
}