/WindowsAzure/Common/Internal/IServiceFilter.php

http://github.com/WindowsAzure/azure-sdk-for-php · PHP · 61 lines · 8 code · 5 blank · 48 comment · 0 complexity · 6872d97153e51fb4bbed57c67b161268 MD5 · raw file

  1. <?php
  2. /**
  3. * LICENSE: Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Unless required by applicable law or agreed to in writing, software
  9. * distributed under the License is distributed on an "AS IS" BASIS,
  10. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. * See the License for the specific language governing permissions and
  12. * limitations under the License.
  13. *
  14. * PHP version 5
  15. *
  16. * @category Microsoft
  17. * @package WindowsAzure\Common\Internal
  18. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  19. * @copyright 2012 Microsoft Corporation
  20. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  21. * @link https://github.com/windowsazure/azure-sdk-for-php
  22. */
  23. namespace WindowsAzure\Common\Internal;
  24. /**
  25. * ServceFilter is called when the sending the request and after receiving the
  26. * response.
  27. *
  28. * @category Microsoft
  29. * @package WindowsAzure\Common\Internal
  30. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  31. * @copyright 2012 Microsoft Corporation
  32. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  33. * @version Release: @package_version@
  34. * @link https://github.com/windowsazure/azure-sdk-for-php
  35. */
  36. interface IServiceFilter
  37. {
  38. /**
  39. * Processes HTTP request before send.
  40. *
  41. * @param mix $request HTTP request object.
  42. *
  43. * @return mix processed HTTP request object.
  44. */
  45. public function handleRequest($request);
  46. /**
  47. * Processes HTTP response after send.
  48. *
  49. * @param mix $request HTTP request object.
  50. * @param mix $response HTTP response object.
  51. *
  52. * @return mix processed HTTP response object.
  53. */
  54. public function handleResponse($request, $response);
  55. }
  56. ?>