RestfulSecurityService

public enum RestfulSecurityService: String

Types of security services used with FHIR.

URL: http://hl7.org/fhir/restful-security-service ValueSet: http://hl7.org/fhir/ValueSet/restful-security-service

  • Oauth (unspecified version see oauth.net).

    Declaration

    Swift

    case oAuth = "OAuth"
  • Microsoft NTLM Authentication.

    Declaration

    Swift

    case NTLM = "NTLM"
  • Basic authentication defined in HTTP specification.

    Declaration

    Swift

    case basic = "Basic"
  • SSL where client must have a certificate registered with the server.

    Declaration

    Swift

    case certificates = "Certificates"