Finish basic UI setup for reverse proxy display

This commit is contained in:
Thomas Stokes
2023-10-31 17:33:45 +01:00
parent f5051c4eab
commit c723c2f161
5 changed files with 72 additions and 2 deletions
@@ -159,4 +159,23 @@ public interface Host extends WithID {
default boolean isSharedHost() {
return false;
}
/*
* Checks if there is a name tag and returns the value, if it exists.
*
* @return name tag value
*/
default String getNameTag() {
return "Name tag not found";
}
/**
* Fetches the AMI id value.
*
* @return ami id
*/
default String getImageId() {
return "No AMI found";
}
}