Interface für Favoriten Grundgerüst erstellt

This commit is contained in:
m_broelemann 2020-12-27 20:05:08 +01:00
parent cc4a26aab5
commit 7619777915
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,21 @@
package com.example.aped.utils;
import java.util.List;
public class Favorites implements IFAVORITES{
@Override
public List<String> getFavorites() {
return null;
}
@Override
public String addFavorite(String deviceName) {
return null;
}
@Override
public String removeFavorite(String deviceName) {
return null;
}
}

View File

@ -0,0 +1,9 @@
package com.example.aped.utils;
import java.util.List;
public interface IFAVORITES {
List<String> getFavorites();
String addFavorite(String deviceName);
String removeFavorite(String deviceName);
}