Interface ServiceInfo
-
- All Superinterfaces:
java.lang.Comparable<ServiceInfo>
@API public interface ServiceInfo extends java.lang.Comparable<ServiceInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default intcompareTo(ServiceInfo other)java.lang.StringgetDisplayName()User friendly name of the service.java.lang.StringgetServiceName()The name which is used by clients when accessing it.
-
-
-
Method Detail
-
getServiceName
java.lang.String getServiceName()
The name which is used by clients when accessing it.- Returns:
- The service name
- Since:
- 2015.3.0
-
getDisplayName
java.lang.String getDisplayName()
User friendly name of the service.- Returns:
- The user friendly name
- Since:
- 2015.3.0
-
compareTo
default int compareTo(ServiceInfo other)
- Specified by:
compareToin interfacejava.lang.Comparable<ServiceInfo>
-
-