Added backup and restore for device db functionality. Testing multi

button press for harmony.
This commit is contained in:
Admin
2016-01-26 16:47:16 -06:00
parent 315fd31270
commit 4bc91be88b
7 changed files with 280 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
package com.bwssystems.HABridge.dao;
public class BackupFilename {
private String filename;
public String getFilename() {
return filename;
}
public void setFilename(String filename) {
this.filename = filename;
}
}