com.vikingbrain.nmt.util.MetadataDatabase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thedavidbox-client4j Show documentation
Show all versions of thedavidbox-client4j Show documentation
A Java HTTP client for consuming TheDavidBox Service API of Networked Media Tank devices
package com.vikingbrain.nmt.util;
public class MetadataDatabase {
private final String deviceUrl;
private final String databasePath;
public MetadataDatabase(String deviceUrl, String databasePath) {
super();
this.deviceUrl = deviceUrl;
this.databasePath = databasePath;
}
public final String getDeviceUrl() {
return deviceUrl;
}
public final String getDatabasePath() {
return databasePath;
}
@Override
public String toString() {
return "MetadataDatabase [deviceUrl=" + deviceUrl + ", databasePath="
+ databasePath + "]";
}
}