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


Java PasswordAuthentication.getUserName方法代码示例

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


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

示例1: handleKenaiAuthorization

import java.net.PasswordAuthentication; //导入方法依赖的package包/类
private boolean handleKenaiAuthorization(SvnKenaiAccessor support, String url) {
    PasswordAuthentication pa = support.getPasswordAuthentication(url, true);
    if(pa == null) {
        return false;
    }

    String user = pa.getUserName();
    char[] password = pa.getPassword();
    
    adapter.setUsername(user != null ? user : "");
    if (connectionType != ConnectionType.javahl) {
        adapter.setPassword(password != null ? new String(password) : "");
    }

    return true;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:17,代码来源:SvnClientExceptionHandler.java

示例2: getAnswer

import java.net.PasswordAuthentication; //导入方法依赖的package包/类
private void getAnswer() {
    if (!answered) {
        answered = true;
        PasswordAuthentication passAuth =
                Authenticator.requestPasswordAuthentication(
                hci.host, hci.addr, hci.port, hci.protocol,
                hci.prompt, hci.scheme, hci.url, hci.authType);
        /**
         * To be compatible with existing callback handler implementations,
         * when the underlying Authenticator is canceled, username and
         * password are assigned null. No exception is thrown.
         */
        if (passAuth != null) {
            username = passAuth.getUserName();
            password = passAuth.getPassword();
        }
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:19,代码来源:NegotiateCallbackHandler.java

示例3: init

import java.net.PasswordAuthentication; //导入方法依赖的package包/类
private void init (PasswordAuthentication pw) {
    this.pw = pw;
    if (pw != null) {
        String s = pw.getUserName();
        int i = s.indexOf ('\\');
        if (i == -1) {
            username = s;
            ntdomain = defaultDomain;
        } else {
            ntdomain = s.substring (0, i).toUpperCase();
            username = s.substring (i+1);
        }
        password = new String (pw.getPassword());
    } else {
        /* credentials will be acquired from OS */
        username = null;
        ntdomain = null;
        password = null;
    }
    init0();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:22,代码来源:NTLMAuthentication.java

示例4: getAnswer

import java.net.PasswordAuthentication; //导入方法依赖的package包/类
private void getAnswer() {
    if (!answered) {
        answered = true;
        PasswordAuthentication passAuth =
                Authenticator.requestPasswordAuthentication(
                hci.authenticator,
                hci.host, hci.addr, hci.port, hci.protocol,
                hci.prompt, hci.scheme, hci.url, hci.authType);
        /**
         * To be compatible with existing callback handler implementations,
         * when the underlying Authenticator is canceled, username and
         * password are assigned null. No exception is thrown.
         */
        if (passAuth != null) {
            username = passAuth.getUserName();
            password = passAuth.getPassword();
        }
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:20,代码来源:NegotiateCallbackHandler.java

示例5: getClient

import java.net.PasswordAuthentication; //导入方法依赖的package包/类
public SvnClient getClient(SVNUrl repositoryUrl, SvnProgressSupport progressSupport) throws SVNClientException {
    Parameters.notNull("repositoryUrl", repositoryUrl); //NOI18N
    String username = ""; // NOI18N
    char[] password = null;

    SvnKenaiAccessor kenaiSupport = SvnKenaiAccessor.getInstance();
    if(kenaiSupport.isKenai(repositoryUrl.toString())) {
        PasswordAuthentication pa = kenaiSupport.getPasswordAuthentication(repositoryUrl.toString(), false);
        if(pa != null) {
            username = pa.getUserName();
            password = pa.getPassword();
        }
    } else {
        RepositoryConnection rc = SvnModuleConfig.getDefault().getRepositoryConnection(repositoryUrl.toString());
        if(rc != null) {
            username = rc.getUsername();
            password = rc.getPassword();
        } else if(!Utilities.isWindows()) {
            PasswordFile pf = PasswordFile.findFileForUrl(repositoryUrl);
            if(pf != null) {
                username = pf.getUsername();
                String psswdString = pf.getPassword();
                password = psswdString != null ? psswdString.toCharArray() : null;
            }
        }
    }
    return getClient(repositoryUrl, username, password, progressSupport);
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:29,代码来源:Subversion.java

示例6: getKenaiAuthData

import java.net.PasswordAuthentication; //导入方法依赖的package包/类
private void getKenaiAuthData(SvnKenaiAccessor support) {
    final String urlString = url.toString();
    
    PasswordAuthentication pa = support.getPasswordAuthentication(urlString, true);
    if(pa == null) {
        throw new RuntimeException(new InterruptedException(org.openide.util.NbBundle.getMessage(SvnClientExceptionHandler.class, "MSG_ActionCanceledByUser"))); //NOI18N
    }
    String user = pa.getUserName();
    char[] psswd = pa.getPassword();

    username = user != null ? user : "";
    password = psswd;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:14,代码来源:SvnClientCallback.java

示例7: authenticate

import java.net.PasswordAuthentication; //导入方法依赖的package包/类
@Override
public boolean authenticate(String errroMsg) {
    PasswordAuthentication pa = TeamAccessorUtils.getPasswordAuthentication(kenaiProject.getWebLocation().toString(), true);
    if(pa == null) {
        return false;
    }
    
    String user = pa.getUserName();
    char[] password = pa.getPassword();

    setTaskRepository(user, password);

    return true;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:15,代码来源:KenaiRepository.java

示例8: getKenaiUser

import java.net.PasswordAuthentication; //导入方法依赖的package包/类
private static String getKenaiUser(TeamProject kenaiProject) {
    PasswordAuthentication pa = TeamAccessorUtils.getPasswordAuthentication(kenaiProject.getWebLocation().toString(), false);
    if(pa != null) {
        return pa.getUserName();
    }
    return "";                                                              // NOI18N
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:8,代码来源:KenaiRepository.java

示例9: propertyChange

import java.net.PasswordAuthentication; //导入方法依赖的package包/类
@Override
public void propertyChange(PropertyChangeEvent evt) {
    if(evt.getPropertyName().equals(TeamAccessor.PROP_LOGIN)) {

        // XXX move to spi?
        // get kenai credentials
        String user;
        char[] psswd;
        PasswordAuthentication pa = 
                TeamAccessorUtils.getPasswordAuthentication(kenaiProject.getWebLocation().toString(), false); // do not force login
        if(pa != null) {
            user = pa.getUserName();
            psswd = pa.getPassword();
        } else {
            user = "";                                                      // NOI18N
            psswd = new char[0];                                            // NOI18N
        }

        setTaskRepository(user, psswd);

        synchronized(KenaiRepository.this) {
            if(evt.getNewValue() != null) {
                if(myIssues != null) {
                    // XXX this is a mess - setting the controller and the query
                    KenaiQueryController c = (KenaiQueryController) myIssues.getController();
                    String url = getMyIssuesQueryUrl();
                    c.populate(url);
                    myIssues.setUrlParameters(url);
                }
            } 
        }
    }
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:34,代码来源:KenaiRepository.java

示例10: handle

import java.net.PasswordAuthentication; //导入方法依赖的package包/类
@Override
public ChallengeResponse handle(ChallengeRequest challengeRequest) {

    LOG.entering(CLASS_NAME, "handle", new String[]{challengeRequest.getLocation(),
                                                    challengeRequest.getAuthenticationParameters()});

    if (challengeRequest.getLocation() != null) {



        // Start by using this generic Basic handler
        LoginHandler loginHandler = getLoginHandler();

        // Try to delegate to a realm-specific login handler if we can
        String realm = RealmUtils.getRealm(challengeRequest);
        if ( realm != null && loginHandlersByRealm.get(realm) != null) {
            loginHandler = loginHandlersByRealm.get(realm);
        }
        LOG.finest("BasicChallengeHandler.getResponse: login handler = " + loginHandler);
        if (loginHandler != null) {
            PasswordAuthentication creds = loginHandler.getCredentials();
            if (creds != null && creds.getUserName() != null && creds.getPassword() != null) {
                return BasicChallengeResponseFactory.create(creds, this);
            }
        }
    }
    return null;
}
 
开发者ID:Datatellit,项目名称:xlight_android_native,代码行数:29,代码来源:DefaultBasicChallengeHandler.java

示例11: getCredentials

import java.net.PasswordAuthentication; //导入方法依赖的package包/类
public Credentials getCredentials(final AuthScope authscope) {
    Args.notNull(authscope, "Auth scope");
    final Credentials localcreds = internal.getCredentials(authscope);
    if (localcreds != null) {
        return localcreds;
    }
    if (authscope.getHost() != null) {
        PasswordAuthentication systemcreds = getSystemCreds(
                authscope, Authenticator.RequestorType.SERVER);
        if (systemcreds == null) {
            systemcreds = getSystemCreds(
                    authscope, Authenticator.RequestorType.PROXY);
        }
        if (systemcreds != null) {
            final String domain = System.getProperty("http.auth.ntlm.domain");
            if (domain != null) {
                return new NTCredentials(
                        systemcreds.getUserName(),
                        new String(systemcreds.getPassword()),
                        null, domain);
            } else {
                if (AuthSchemes.NTLM.equalsIgnoreCase(authscope.getScheme())) {
                    // Domian may be specified in a fully qualified user name
                    return new NTCredentials(
                            systemcreds.getUserName(),
                            new String(systemcreds.getPassword()),
                            null, null);
                } else {
                    return new UsernamePasswordCredentials(
                            systemcreds.getUserName(),
                            new String(systemcreds.getPassword()));
                }
            }
        }
    }
    return null;
}
 
开发者ID:mozilla-mobile,项目名称:FirefoxData-android,代码行数:38,代码来源:SystemDefaultCredentialsProvider.java


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