DataDispatcherEntry.js 1.1 KB

1234567891011121314151617181920212223242526272829
  1. /*
  2. *+------------------------------------------------------------------------+
  3. *| Licensed Materials - Property of IBM
  4. *| IBM Cognos Products: Viewer
  5. *| (C) Copyright IBM Corp. 2001, 2011
  6. *|
  7. *| US Government Users Restricted Rights - Use, duplication or
  8. *| disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  9. *|
  10. *+------------------------------------------------------------------------+
  11. */
  12. /*
  13. *******************************************************************************
  14. *** View DispatcherEntry.js for information on the dispatcher entry classes ***
  15. *******************************************************************************
  16. */
  17. function DataDispatcherEntry(oCV) {
  18. // even if this won't be an asynch type request, we can still use the
  19. // AsynchDATARequest object to make the request
  20. if (oCV) {
  21. this.setRequest(new AsynchDATARequest(oCV.getGateway(), oCV.getWebContentRoot()));
  22. }
  23. DataDispatcherEntry.baseConstructor.call(this, oCV);
  24. }
  25. DataDispatcherEntry.prototype = new DispatcherEntry();
  26. DataDispatcherEntry.baseConstructor = DispatcherEntry;