mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-22 21:55:39 +00:00
Finish basic UI setup for reverse proxy display
This commit is contained in:
@@ -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";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user