/**
  * Constructor
  *
  * @param PostmanOptions $options        	
  */
 function __construct(PostmanOptions $options)
 {
     parent::__construct();
     $this->options = $options;
     PostmanUtils::registerAjaxHandler('import_configuration', $this, 'getConfigurationFromExternalPluginViaAjax');
 }
 function __construct()
 {
     parent::__construct();
     $this->registerAjaxHandler('manual_config', $this, 'getManualConfigurationViaAjax');
     $this->registerAjaxHandler('get_wizard_configuration_options', $this, 'getWizardConfigurationViaAjax');
 }
 /**
  * Constructor
  *
  * @param PostmanOptions $options        	
  * @param PostmanOAuthToken $authorizationToken        	
  * @param PostmanConfigTextHelper $oauthScribe        	
  */
 function __construct()
 {
     parent::__construct();
     $this->registerAjaxHandler('send_test_email', $this, 'sendTestEmailViaAjax');
 }
 /**
  * Constructor
  *
  * @param PostmanOptions $options        	
  * @param PostmanOAuthToken $authorizationToken        	
  * @param PostmanConfigTextHelper $oauthScribe        	
  */
 function __construct()
 {
     parent::__construct();
     PostmanUtils::registerAjaxHandler('postman_send_test_email', $this, 'sendTestEmailViaAjax');
 }