当前位置: 首页>>代码示例>>Java>>正文


Java PluginManager.onReceivedHttpAuthRequest方法代码示例

本文整理汇总了Java中org.apache.cordova.PluginManager.onReceivedHttpAuthRequest方法的典型用法代码示例。如果您正苦于以下问题:Java PluginManager.onReceivedHttpAuthRequest方法的具体用法?Java PluginManager.onReceivedHttpAuthRequest怎么用?Java PluginManager.onReceivedHttpAuthRequest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.cordova.PluginManager的用法示例。


在下文中一共展示了PluginManager.onReceivedHttpAuthRequest方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onReceivedHttpAuthRequest

import org.apache.cordova.PluginManager; //导入方法依赖的package包/类
/**
 * On received http auth request.
 * The method reacts on all registered authentication tokens. There is one and only one authentication token for any host + realm combination
 */
@Override
public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) {

    // Get the authentication token (if specified)
    AuthenticationToken token = this.getAuthenticationToken(host, realm);
    if (token != null) {
        handler.proceed(token.getUserName(), token.getPassword());
        return;
    }

    // Check if there is some plugin which can resolve this auth challenge
    PluginManager pluginManager = this.parentEngine.pluginManager;
    if (pluginManager != null && pluginManager.onReceivedHttpAuthRequest(null, new CordovaHttpAuthHandler(handler), host, realm)) {
        parentEngine.client.clearLoadTimeoutTimer();
        return;
    }

    // By default handle 401 like we'd normally do!
    super.onReceivedHttpAuthRequest(view, handler, host, realm);
}
 
开发者ID:whtsky,项目名称:ShaPaoZi-Mobile,代码行数:25,代码来源:SystemWebViewClient.java

示例2: onReceivedHttpAuthRequest

import org.apache.cordova.PluginManager; //导入方法依赖的package包/类
/**
 * On received http auth request.
 * The method reacts on all registered authentication tokens. There is one and only one authentication token for any host + realm combination
 */
@Override
public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) {

    // Get the authentication token (if specified)
    AuthenticationToken token = this.getAuthenticationToken(host, realm);
    if (token != null) {
        handler.proceed(token.getUserName(), token.getPassword());
        return;
    }

    // Check if there is some plugin which can resolve this auth challenge
    PluginManager pluginManager = this.parentEngine.pluginManager;
    if (pluginManager != null && pluginManager.onReceivedHttpAuthRequest(null, new X5CordovaHttpAuthHandler(handler), host, realm)) {
        parentEngine.client.clearLoadTimeoutTimer();
        return;
    }

    // By default handle 401 like we'd normally do!
    super.onReceivedHttpAuthRequest(view, handler, host, realm);
}
 
开发者ID:runner525,项目名称:x5webview-cordova-plugin,代码行数:25,代码来源:X5WebViewClient.java

示例3: onReceivedHttpAuthRequest

import org.apache.cordova.PluginManager; //导入方法依赖的package包/类
/**
 * On received http auth request.
 * The method reacts on all registered authentication tokens. There is one and only one authentication token for any host + realm combination
 */
@Override
public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) {

  // Get the authentication token (if specified)
  AuthenticationToken token = this.getAuthenticationToken(host, realm);
  if (token != null) {
    handler.proceed(token.getUserName(), token.getPassword());
    return;
  }

  // Check if there is some plugin which can resolve this auth challenge
  PluginManager pluginManager = this.parentEngine.pluginManager;
  if (pluginManager != null && pluginManager.onReceivedHttpAuthRequest(null, new X5CordovaHttpAuthHandler(handler), host, realm)) {
    parentEngine.client.clearLoadTimeoutTimer();
    return;
  }

  // By default handle 401 like we'd normally do!
  super.onReceivedHttpAuthRequest(view, handler, host, realm);
}
 
开发者ID:zsxsoft,项目名称:cordova-plugin-x5-tbs,代码行数:25,代码来源:X5WebViewClient.java

示例4: onReceivedHttpAuthRequest

import org.apache.cordova.PluginManager; //导入方法依赖的package包/类
@Override
public void onReceivedHttpAuthRequest(XWalkView view, XWalkHttpAuthHandler handler,
        String host, String realm) {
    // Check if there is some plugin which can resolve this auth challenge
    PluginManager pluginManager = parentEngine.pluginManager;
    if (pluginManager != null && pluginManager.onReceivedHttpAuthRequest(
            parentEngine.parentWebView,
            new XWalkCordovaHttpAuthHandler(handler), host, realm)) {
        parentEngine.client.clearLoadTimeoutTimer();
        return;
    }

    // By default handle 401 like we'd normally do!
    super.onReceivedHttpAuthRequest(view, handler, host, realm);
}
 
开发者ID:infil00p,项目名称:cordova-plugin-crosswalk-webview,代码行数:16,代码来源:XWalkCordovaResourceClient.java


注:本文中的org.apache.cordova.PluginManager.onReceivedHttpAuthRequest方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。