Source for file OsidRomiManager.php

Documentation is available at OsidRomiManager.php

  1. <?php
  2. include_once(dirname(__FILE__)."/OsidManager.php");
  3. /**
  4. * OsidRomiManager is the key binding for accessing remote computing
  5. * environments either by the application or by an OSID implementation.
  6. * Applications usually are unaware of whether a resource being used is remote
  7. * or local. The OSID implementation used by an application can be
  8. * implemented as a local service, a remote service, or both. Applications
  9. * using only OSIDs and their implementations can leave issues associated with
  10. * remote resources to the implementation. Although implementations are
  11. * expected to handle accessing most remote resources, there are cases where a
  12. * special implementation, designed for this purpose, is needed. An
  13. * application should not handle remote access on its own and in an ad hoc
  14. * way, because the application will no longer be interoperable across the
  15. * org.osid community. If the application can find no way to a resource
  16. * through OSID implementations supporting OsidManager, the application should
  17. * load an implementation of the OsidRomiManager interface. This interface
  18. * provides extra support for access to remote resources.
  19. *
  20. * <p>
  21. * OSID Version: 2.0
  22. * </p>
  23. *
  24. * <p>
  25. * Licensed under the {@link org.osid.SidImplementationLicenseMIT MIT}
  26. * O.K.I&#46; OSID Definition License}.
  27. * </p>
  28. *
  29. * @package org.osid
  30. */
  31. class OsidRomiManager
  32. extends OsidManager
  33. {
  34. /**
  35. * Invokes a method remotely.
  36. *
  37. * @param object mixed $object (original type: java.io.Serializable)
  38. * @param string $methodname
  39. * @param string $argTypes
  40. * @param array $args (original type: java.io.Serializable[])
  41. *
  42. * @return object mixed (original type: java.io.Serializable)
  43. *
  44. * @throws object OsidException An exception with one of the following
  45. * messages defined in org.osid.OsidException: {@link }
  46. * org.osid.OsidException#OPERATION_FAILED OPERATION_FAILED},
  47. * {@link org.osid.OsidException#PERMISSION_DENIED}
  48. * PERMISSION_DENIED}, {@link }
  49. * org.osid.OsidException#CONFIGURATION_ERROR
  50. * CONFIGURATION_ERROR}, {@link }
  51. * org.osid.OsidException#NULL_ARGUMENT NULL_ARGUMENT}
  52. *
  53. * @access public
  54. */
  55. function invoke ( $object, $methodname, $argTypes, $args ) {
  56. die ("Method <b>".__FUNCTION__."()</b> declared in interface<b> ".__CLASS__."</b> has not been overloaded in a child class.");
  57. }
  58. }
  59.  
  60. ?>

Documentation generated on Wed, 19 Sep 2007 10:25:24 -0400 by phpDocumentor 1.3.0RC3