OIDRegistrationResponse.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*! @file OIDRegistrationResponse.h
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2016 The AppAuth for iOS Authors. All Rights Reserved.
  5. @copydetails
  6. Licensed under the Apache License, Version 2.0 (the "License");
  7. you may not use this file except in compliance with the License.
  8. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. */
  16. #import <Foundation/Foundation.h>
  17. @class OIDRegistrationRequest;
  18. NS_ASSUME_NONNULL_BEGIN
  19. /*! @brief Parameter name for the client id.
  20. */
  21. extern NSString *const OIDClientIDParam;
  22. /*! @brief Parameter name for the client id issuance timestamp.
  23. */
  24. extern NSString *const OIDClientIDIssuedAtParam;
  25. /*! @brief Parameter name for the client secret.
  26. */
  27. extern NSString *const OIDClientSecretParam;
  28. /*! @brief Parameter name for the client secret expiration time.
  29. */
  30. extern NSString *const OIDClientSecretExpirestAtParam;
  31. /*! @brief Parameter name for the registration access token.
  32. */
  33. extern NSString *const OIDRegistrationAccessTokenParam;
  34. /*! @brief Parameter name for the client configuration URI.
  35. */
  36. extern NSString *const OIDRegistrationClientURIParam;
  37. /*! @brief Represents a registration response.
  38. @see https://openid.net/specs/openid-connect-registration-1_0.html#RegistrationResponse
  39. */
  40. @interface OIDRegistrationResponse : NSObject <NSCopying, NSSecureCoding>
  41. /*! @brief The request which was serviced.
  42. */
  43. @property(nonatomic, readonly) OIDRegistrationRequest *request;
  44. /*! @brief The registered client identifier.
  45. @remarks client_id
  46. @see https://tools.ietf.org/html/rfc6749#section-4
  47. @see https://tools.ietf.org/html/rfc6749#section-4.1.1
  48. */
  49. @property(nonatomic, readonly) NSString *clientID;
  50. /*! @brief Timestamp of when the client identifier was issued, if provided.
  51. @remarks client_id_issued_at
  52. @see https://openid.net/specs/openid-connect-registration-1_0.html#RegistrationResponse
  53. */
  54. @property(nonatomic, readonly, nullable) NSDate *clientIDIssuedAt;
  55. /*! @brief TThe client secret, which is part of the client credentials, if provided.
  56. @remarks client_secret
  57. @see https://openid.net/specs/openid-connect-registration-1_0.html#RegistrationResponse
  58. */
  59. @property(nonatomic, readonly, nullable) NSString *clientSecret;
  60. /*! @brief Timestamp of when the client credentials expires, if provided.
  61. @remarks client_secret_expires_at
  62. @see https://openid.net/specs/openid-connect-registration-1_0.html#RegistrationResponse
  63. */
  64. @property(nonatomic, readonly, nullable) NSDate *clientSecretExpiresAt;
  65. /*! @brief Client registration access token that can be used for subsequent operations upon the
  66. client registration.
  67. @remarks registration_access_token
  68. @see https://openid.net/specs/openid-connect-registration-1_0.html#RegistrationResponse
  69. */
  70. @property(nonatomic, readonly, nullable) NSString *registrationAccessToken;
  71. /*! @brief Location of the client configuration endpoint, if provided.
  72. @remarks registration_client_uri
  73. @see https://openid.net/specs/openid-connect-registration-1_0.html#RegistrationResponse
  74. */
  75. @property(nonatomic, readonly, nullable) NSURL *registrationClientURI;
  76. /*! @brief Client authentication method to use at the token endpoint, if provided.
  77. @remarks token_endpoint_auth_method
  78. @see http://openid.net/specs/openid-connect-core-1_0.html#ClientAuthentication
  79. */
  80. @property(nonatomic, readonly, nullable) NSString *tokenEndpointAuthenticationMethod;
  81. /*! @brief Additional parameters returned from the token server.
  82. */
  83. @property(nonatomic, readonly, nullable) NSDictionary<NSString *, NSObject <NSCopying> *>
  84. *additionalParameters;
  85. /*! @internal
  86. @brief Unavailable. Please use initWithRequest
  87. */
  88. - (instancetype)init NS_UNAVAILABLE;
  89. /*! @brief Designated initializer.
  90. @param request The serviced request.
  91. @param parameters The decoded parameters returned from the Authorization Server.
  92. @remarks Known parameters are extracted from the @c parameters parameter and the normative
  93. properties are populated. Non-normative parameters are placed in the
  94. @c #additionalParameters dictionary.
  95. */
  96. - (instancetype)initWithRequest:(OIDRegistrationRequest *)request
  97. parameters:(NSDictionary<NSString *, NSObject <NSCopying> *> *)parameters
  98. NS_DESIGNATED_INITIALIZER;
  99. @end
  100. NS_ASSUME_NONNULL_END