Class Authority
java.lang.Object
org.apache.pekko.http.javadsl.model.Authority
- Direct Known Subclasses:
- Uri.Authority
Represents a hostname, port and user info.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic AuthorityReturns a Authority created by parsing the given string representation.abstract Hosthost()Host in a URIabstract intport()A port number that may be `0` to signal the default port of for scheme.abstract Stringuserinfo()The percent decoded userinfo.
- 
Constructor Details- 
Authoritypublic Authority()
 
- 
- 
Method Details- 
hostHost in a URI
- 
portpublic abstract int port()A port number that may be `0` to signal the default port of for scheme. In general what you want is not the value of this field but {@link Uri::port::}
- 
userinfoThe percent decoded userinfo. According to https://tools.ietf.org/html/rfc3986#section-3.2.1 the "user:password" syntax is deprecated and implementations are encouraged to ignore any characters after the colon (`:`). Therefore, it is not guaranteed that future versions of this class will preserve full userinfo between parsing and rendering (even if it might do so right now).
- 
createReturns a Authority created by parsing the given string representation.
 
-