Java Code Examples for org.apache.cordova.PluginManager#onReceivedClientCertRequest()
The following examples show how to use
org.apache.cordova.PluginManager#onReceivedClientCertRequest() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SystemWebViewClient.java From xmall with MIT License | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(21) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 2
Source File: SystemWebViewClient.java From countly-sdk-cordova with MIT License | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(Build.VERSION_CODES.LOLLIPOP) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 3
Source File: SystemWebViewClient.java From lona with GNU General Public License v3.0 | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(Build.VERSION_CODES.LOLLIPOP) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 4
Source File: SystemWebViewClient.java From pychat with MIT License | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(Build.VERSION_CODES.LOLLIPOP) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 5
Source File: SystemWebViewClient.java From chappiecast with Mozilla Public License 2.0 | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(21) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 6
Source File: SystemWebViewClient.java From cordova-plugin-intent with MIT License | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(21) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 7
Source File: SystemWebViewClient.java From a2cardboard with Apache License 2.0 | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(21) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 8
Source File: SystemWebViewClient.java From cordova-plugin-app-update-demo with MIT License | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(21) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 9
Source File: SystemWebViewClient.java From app-icon with MIT License | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(21) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 10
Source File: SystemWebViewClient.java From keemob with MIT License | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(Build.VERSION_CODES.LOLLIPOP) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 11
Source File: SystemWebViewClient.java From keemob with MIT License | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(Build.VERSION_CODES.LOLLIPOP) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 12
Source File: X5WebViewClient.java From cordova-plugin-x5-webview with Apache License 2.0 | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(21) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new X5CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 13
Source File: SystemWebViewClient.java From ultimate-cordova-webview-app with MIT License | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(21) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 14
Source File: SystemWebViewClient.java From BigDataPlatform with GNU General Public License v3.0 | 6 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @Override @TargetApi(21) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 15
Source File: X5WebViewClient.java From cordova-plugin-x5engine-webview with Apache License 2.0 | 5 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @TargetApi(21) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new X5CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 16
Source File: X5WebViewClient.java From cordova-plugin-x5-tbs with Apache License 2.0 | 5 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @TargetApi(21) public void onReceivedClientCertRequest(WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new X5CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 17
Source File: X5WebViewClient.java From x5webview-cordova-plugin with Apache License 2.0 | 5 votes |
/** * On received client cert request. * The method forwards the request to any running plugins before using the default implementation. * * @param view * @param request */ @TargetApi(21) public void onReceivedClientCertRequest (WebView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = this.parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest(null, new X5CordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } // By default pass to WebViewClient super.onReceivedClientCertRequest(view, request); }
Example 18
Source File: XWalkCordovaResourceClient.java From cordova-crosswalk-engine with Apache License 2.0 | 5 votes |
@Override public void onReceivedClientCertRequest(XWalkView view, ClientCertRequest request) { // Check if there is some plugin which can resolve this certificate request PluginManager pluginManager = parentEngine.pluginManager; if (pluginManager != null && pluginManager.onReceivedClientCertRequest( parentEngine.parentWebView, new XWalkCordovaClientCertRequest(request))) { parentEngine.client.clearLoadTimeoutTimer(); return; } super.onReceivedClientCertRequest(view, request); }