OIDExternalUserAgentRequest.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*! @file OIDExternalUserAgent.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. /*! @protocol OIDExternalUserAgent
  17. @brief An interface that any external user-agent request may implement to use the
  18. @c OIDExternalUserAgent flow.
  19. */
  20. @protocol OIDExternalUserAgentRequest
  21. /*! @brief Method to create and return the complete request URL instance.
  22. @return A @c NSURL instance which contains the URL to be opened in an external UI (i.e. browser)
  23. */
  24. - (NSURL*)externalUserAgentRequestURL;
  25. /*! @brief If this external user-agent request has a redirect URL, this should return its scheme.
  26. Since some external requests have optional callbacks (such as the end session endpoint), the
  27. return value of this method is nullable.
  28. @return A @c NSString instance that contains the scheme of a callback url, or nil if there is
  29. no callback url for this request.
  30. */
  31. - (NSString*)redirectScheme;
  32. @end