public enum RestfulSecurityService extends Enum<RestfulSecurityService>
| Enum Constant and Description |
|---|
BASIC
Basic authentication defined in HTTP specification.
|
CERTIFICATES
SSL where client must have a certificate registered with the server.
|
KERBEROS
see http://www.ietf.org/rfc/rfc4120.txt.
|
NTLM
Microsoft NTLM Authentication.
|
NULL
added to help the parsers
|
OAUTH
OAuth (unspecified version see oauth.net).
|
SMARTONFHIR
OAuth2 using SMART-on-FHIR profile (see http://docs.smarthealthit.org/).
|
| Modifier and Type | Method and Description |
|---|---|
static RestfulSecurityService |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static RestfulSecurityService |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestfulSecurityService[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestfulSecurityService OAUTH
public static final RestfulSecurityService SMARTONFHIR
public static final RestfulSecurityService NTLM
public static final RestfulSecurityService BASIC
public static final RestfulSecurityService KERBEROS
public static final RestfulSecurityService CERTIFICATES
public static final RestfulSecurityService NULL
public static RestfulSecurityService[] values()
for (RestfulSecurityService c : RestfulSecurityService.values()) System.out.println(c);
public static RestfulSecurityService 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 nullpublic static RestfulSecurityService fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2021 Health Level 7. All rights reserved.