OIDAuthStateChangeDelegate.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*! @file OIDAuthStateChangeDelegate.h
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2015 Google Inc. 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 OIDAuthState;
  18. NS_ASSUME_NONNULL_BEGIN
  19. /*! @protocol OIDAuthStateChangeDelegate
  20. @brief Delegate of the OIDAuthState used to monitor various changes in state.
  21. */
  22. @protocol OIDAuthStateChangeDelegate <NSObject>
  23. /*! @brief Called when the authorization state changes and any backing storage needs to be updated.
  24. @param state The @c OIDAuthState that changed.
  25. @discussion If you are storing the authorization state, you should update the storage when the
  26. state changes.
  27. */
  28. - (void)didChangeState:(OIDAuthState *)state;
  29. @end
  30. NS_ASSUME_NONNULL_END