OIDURLSessionProvider.m 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*! @file OIDURLSessionProvider.m
  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 "OIDURLSessionProvider.h"
  17. NS_ASSUME_NONNULL_BEGIN
  18. static NSURLSession *__nullable gURLSession;
  19. @implementation OIDURLSessionProvider
  20. + (NSURLSession *)session {
  21. if (!gURLSession) {
  22. gURLSession = [NSURLSession sharedSession];
  23. }
  24. return gURLSession;
  25. }
  26. + (void)setSession:(NSURLSession *)session {
  27. NSAssert(session, @"Parameter: |session| must be non-nil.");
  28. gURLSession = session;
  29. }
  30. @end
  31. NS_ASSUME_NONNULL_END