Add FILE constant to StoreProvider
This commit is contained in:
parent
1cbdf4d17e
commit
21510dff0c
1 changed files with 6 additions and 0 deletions
|
@ -33,6 +33,12 @@ public enum StoreProvider {
|
|||
commands.add("--storage=" + getAlias());
|
||||
}
|
||||
},
|
||||
FILE("file") {
|
||||
@Override
|
||||
public void addStoreOptions(List<String> commands) {
|
||||
commands.add("--storage=" + getAlias());
|
||||
}
|
||||
},
|
||||
JPA("jpa") {
|
||||
@Override
|
||||
public void addStoreOptions(List<String> commands) {
|
||||
|
|
Loading…
Reference in a new issue