public enum HttpsResponsibility extends Enum<HttpsResponsibility>
| Enum Constant and Description |
|---|
HTTPS_AT_PROXY
The application is serving HTTP only.
|
HTTPS_DIRECT
The application is exposed directly to the internet without any sort of proxy
(the application manages its own SSL certificates).
|
| Modifier and Type | Method and Description |
|---|---|
static HttpsResponsibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpsResponsibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpsResponsibility HTTPS_AT_PROXY
public static final HttpsResponsibility HTTPS_DIRECT
public static HttpsResponsibility[] values()
for (HttpsResponsibility c : HttpsResponsibility.values()) System.out.println(c);
public static HttpsResponsibility valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018–2019 Graham Crockford. All rights reserved.