- fixed database
- added music class
This commit is contained in:
20015091
2018-09-11 15:57:32 +02:00
parent a4c6c095c6
commit 40fb445262
5 changed files with 110 additions and 30 deletions

View File

@@ -7,8 +7,12 @@ import java.util.List;
// TODO implement
public class RemoteDB implements Database {
public RemoteDB(String url) {
public static final String BASE_URL = "https://localhost:"; //TODO inserire il percorso giusto con la porta
private final String username;
public RemoteDB(String username) {
this.username = username;
}
@Override