IRequestHandler.js 2.2 KB

12345678910111213141516171819202122232425
  1. /*
  2. *+------------------------------------------------------------------------+
  3. *| Licensed Materials - Property of IBM
  4. *| IBM Cognos Products: Viewer
  5. *| (C) Copyright IBM Corp. 2013
  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. function IRequestHandler(){}
  13. IRequestHandler.prototype.preHttpRequest = function(request) { if(typeof console != "undefined") { console.log("Required method IRequestHandler:preHttpRequest not implemented."); } };
  14. IRequestHandler.prototype.postHttpRequest = function(response) { if(typeof console != "undefined") { console.log("Required method IRequestHandler:postHttpRequest not implemented."); } };
  15. IRequestHandler.prototype.postComplete = function(response) { if(typeof console != "undefined") { console.log("Required method IRequestHandler:postComplete not implemented."); } };
  16. IRequestHandler.prototype.onComplete = function(response) { if(typeof console != "undefined") { console.log("Required method IRequestHandler:onComplete not implemented."); } };
  17. IRequestHandler.prototype.onPostEntryComplete = function(response) { if(typeof console != "undefined") { console.log("Required method IRequestHandler:onPostEntryComplete not implemented."); } };
  18. IRequestHandler.prototype.onFault = function(response) { if(typeof console != "undefined") { console.log("Required method IRequestHandler:onFault not implemented."); } };
  19. IRequestHandler.prototype.onPrompting = function(response) { if(typeof console != "undefined") { console.log("Required method IRequestHandler:onPrompting not implemented."); } };
  20. IRequestHandler.prototype.onWorking = function(response) { if(typeof console != "undefined") { console.log("Required method IRequestHandler:onWorking not implemented."); } };
  21. IRequestHandler.prototype.setWorkingDialog = function(workingDialog) { if(typeof console != "undefined") { console.log("Required method IRequestHandler:setWorkingDialog not implemented."); } };
  22. IRequestHandler.prototype.setRequestIndicator = function(executionCursor) { if(typeof console != "undefined") { console.log("Required method IRequestHandler:setExecutionCursor not implemented."); } };