Enum RestfulSecurityService
- java.lang.Object
-
- java.lang.Enum<RestfulSecurityService>
-
- org.hl7.fhir.r4.model.codesystems.RestfulSecurityService
-
- All Implemented Interfaces:
Serializable,Comparable<RestfulSecurityService>
public enum RestfulSecurityService extends Enum<RestfulSecurityService>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASICBasic authentication defined in HTTP specification.CERTIFICATESSSL where client must have a certificate registered with the server.KERBEROSsee http://www.ietf.org/rfc/rfc4120.txt.NTLMMicrosoft NTLM Authentication.NULLadded to help the parsersOAUTHOAuth (unspecified version see oauth.net).SMARTONFHIROAuth2 using SMART-on-FHIR profile (see http://docs.smarthealthit.org/).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RestfulSecurityServicefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static RestfulSecurityServicevalueOf(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.
-
-
-
Enum Constant Detail
-
OAUTH
public static final RestfulSecurityService OAUTH
OAuth (unspecified version see oauth.net).
-
SMARTONFHIR
public static final RestfulSecurityService SMARTONFHIR
OAuth2 using SMART-on-FHIR profile (see http://docs.smarthealthit.org/).
-
NTLM
public static final RestfulSecurityService NTLM
Microsoft NTLM Authentication.
-
BASIC
public static final RestfulSecurityService BASIC
Basic authentication defined in HTTP specification.
-
KERBEROS
public static final RestfulSecurityService KERBEROS
see http://www.ietf.org/rfc/rfc4120.txt.
-
CERTIFICATES
public static final RestfulSecurityService CERTIFICATES
SSL where client must have a certificate registered with the server.
-
NULL
public static final RestfulSecurityService NULL
added to help the parsers
-
-
Method Detail
-
values
public static RestfulSecurityService[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RestfulSecurityService c : RestfulSecurityService.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RestfulSecurityService valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
fromCode
public static RestfulSecurityService fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-