ServiceCallParameters.php 901 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * This file is part of amfPHP
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the license that is bundled
  8. * with this package in the file license.txt.
  9. */
  10. /**
  11. *
  12. * place holder class for the variables necessary to make a service call
  13. *
  14. * @package Amfphp_Core_Common
  15. * @author Ariel Sommeria-klein
  16. */
  17. class Amfphp_Core_Common_ServiceCallParameters {
  18. /**
  19. * the name of the service.
  20. * The service name can either be just the name of the class (TestService) or include a path(package/TestService)
  21. * separator for path can only be '/'
  22. *
  23. * @var String
  24. */
  25. public $serviceName;
  26. /**
  27. * the name of the method to execute on the service object
  28. * @var String
  29. */
  30. public $methodName;
  31. /**
  32. * the parameters to pass to the method being called on the service
  33. * @var <array>
  34. */
  35. public $methodParameters;
  36. }
  37. ?>