Package io.netty.handler.codec.http
Class HttpScheme
- java.lang.Object
-
- io.netty.handler.codec.http.HttpScheme
-
-
Field Summary
Fields Modifier and Type Field Description static HttpScheme
HTTP
Scheme for non-secure HTTP connection.static HttpScheme
HTTPS
Scheme for secure HTTP connection.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
hashCode()
io.netty.util.AsciiString
name()
int
port()
String
toString()
-
-
-
Field Detail
-
HTTP
public static final HttpScheme HTTP
Scheme for non-secure HTTP connection.
-
HTTPS
public static final HttpScheme HTTPS
Scheme for secure HTTP connection.
-
-