OIDURLSessionProvider.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*! @file OIDURLSessionProvider.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. NS_ASSUME_NONNULL_BEGIN
  18. /*! @brief A NSURLSession provider that allows clients to provide custom implementation
  19. for NSURLSession
  20. */
  21. @interface OIDURLSessionProvider : NSObject
  22. /*! @brief Obtains the current @c NSURLSession; using the +[NSURLSession sharedSession] if
  23. no custom implementation is provided.
  24. @return NSURLSession object to be used for making network requests.
  25. */
  26. + (NSURLSession *)session;
  27. /*! @brief Allows library consumers to change the @c NSURLSession instance used to make
  28. network requests.
  29. @param session The @c NSURLSession instance that should be used for making network requests.
  30. */
  31. + (void)setSession:(NSURLSession *)session;
  32. @end
  33. NS_ASSUME_NONNULL_END