Interface ServiceLookupData
-
- All Known Subinterfaces:
LoadManagerReport
public interface ServiceLookupDataFor backwards compatibility purposes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<java.lang.String>getProtocol(java.lang.String protocol)Get the protocol data of the given protocol.java.util.Map<java.lang.String,java.lang.String>getProtocols()Get all the protocols advertised by the broker.java.lang.StringgetPulsarServiceUrl()java.lang.StringgetPulsarServiceUrlTls()java.lang.StringgetWebServiceUrl()java.lang.StringgetWebServiceUrlTls()
-
-
-
Method Detail
-
getWebServiceUrl
java.lang.String getWebServiceUrl()
-
getWebServiceUrlTls
java.lang.String getWebServiceUrlTls()
-
getPulsarServiceUrl
java.lang.String getPulsarServiceUrl()
-
getPulsarServiceUrlTls
java.lang.String getPulsarServiceUrlTls()
-
getProtocols
java.util.Map<java.lang.String,java.lang.String> getProtocols()
Get all the protocols advertised by the broker.- Returns:
- the protocols advertised by the broker.
-
getProtocol
java.util.Optional<java.lang.String> getProtocol(java.lang.String protocol)
Get the protocol data of the given protocol.- Parameters:
protocol- the protocol advertised by the broker.- Returns:
- the optional protocol data advertised by the broker.
-
-