OIDEndSessionResponse.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*! @file OIDEndSessionResponse.h
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2017 The AppAuth 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 OIDEndSessionRequest;
  18. NS_ASSUME_NONNULL_BEGIN
  19. /*! @brief Represents the response to an End Session request.
  20. @see http://openid.net/specs/openid-connect-session-1_0.html#RPLogout
  21. */
  22. @interface OIDEndSessionResponse : NSObject <NSCopying, NSSecureCoding>
  23. /*! @brief The request which was serviced.
  24. */
  25. @property(nonatomic, readonly) OIDEndSessionRequest *request;
  26. /*! @brief REQUIRED if the "state" parameter was present in the client end-session request. The
  27. exact value received from the client.
  28. @remarks state
  29. */
  30. @property(nonatomic, readonly, nullable) NSString *state;
  31. /*! @brief Additional parameters returned from the end session endpoint.
  32. */
  33. @property(nonatomic, readonly, nullable)
  34. NSDictionary<NSString *, NSObject<NSCopying> *> *additionalParameters;
  35. /*! @internal
  36. @brief Unavailable. Please use initWithParameters:.
  37. */
  38. - (instancetype)init NS_UNAVAILABLE;
  39. /*! @brief Designated initializer.
  40. @param request The serviced request.
  41. @param parameters The decoded parameters returned from the End Session Endpoint.
  42. @remarks Known parameters are extracted from the @c parameters parameter and the normative
  43. properties are populated. Non-normative parameters are placed in the
  44. @c #additionalParameters dictionary.
  45. */
  46. - (instancetype)initWithRequest:(OIDEndSessionRequest *)request
  47. parameters:(NSDictionary<NSString *, NSObject<NSCopying> *> *)parameters
  48. NS_DESIGNATED_INITIALIZER;
  49. @end
  50. NS_ASSUME_NONNULL_END