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


Java AuthUtils.LOGIN_CONTEXT_CLIENT属性代码示例

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


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

示例1: ClientCallbackHandler

/**
 * Constructor based on a JAAS configuration
 * 
 * For digest, you should have a pair of user name and password defined.
 * 
 * @param configuration
 * @throws IOException
 */
public ClientCallbackHandler(Configuration configuration)
		throws IOException {
	if (configuration == null)
		return;
	AppConfigurationEntry configurationEntries[] = configuration
			.getAppConfigurationEntry(AuthUtils.LOGIN_CONTEXT_CLIENT);
	if (configurationEntries == null) {
		String errorMessage = "Could not find a '"
				+ AuthUtils.LOGIN_CONTEXT_CLIENT
				+ "' entry in this configuration: Client cannot start.";
		throw new IOException(errorMessage);
	}

	_password = "";
	for (AppConfigurationEntry entry : configurationEntries) {
		if (entry.getOptions().get(USERNAME) != null) {
			_username = (String) entry.getOptions().get(USERNAME);
		}
		if (entry.getOptions().get(PASSWORD) != null) {
			_password = (String) entry.getOptions().get(PASSWORD);
		}
	}
}
 
开发者ID:zhangjunfang,项目名称:jstorm-0.9.6.3-,代码行数:31,代码来源:ClientCallbackHandler.java

示例2: ClientCallbackHandler

/**
 * Constructor based on a JAAS configuration
 * 
 * For digest, you should have a pair of user name and password defined.
 * 
 * @param configuration
 * @throws IOException
 */
public ClientCallbackHandler(Configuration configuration) throws IOException {
    if (configuration == null)
        return;
    AppConfigurationEntry configurationEntries[] = configuration.getAppConfigurationEntry(AuthUtils.LOGIN_CONTEXT_CLIENT);
    if (configurationEntries == null) {
        String errorMessage = "Could not find a '" + AuthUtils.LOGIN_CONTEXT_CLIENT + "' entry in this configuration: Client cannot start.";
        throw new IOException(errorMessage);
    }

    _password = "";
    for (AppConfigurationEntry entry : configurationEntries) {
        if (entry.getOptions().get(USERNAME) != null) {
            _username = (String) entry.getOptions().get(USERNAME);
        }
        if (entry.getOptions().get(PASSWORD) != null) {
            _password = (String) entry.getOptions().get(PASSWORD);
        }
    }
}
 
开发者ID:kkllwww007,项目名称:jstrom,代码行数:27,代码来源:ClientCallbackHandler.java

示例3: ClientCallbackHandler

/**
 * Constructor based on a JAAS configuration
 * 
 * For digest, you should have a pair of user name and password defined.
 * 
 * @param configuration
 * @throws IOException
 */
public ClientCallbackHandler(Configuration configuration) throws IOException {
    if (configuration == null) return;
    AppConfigurationEntry configurationEntries[] = configuration.getAppConfigurationEntry(AuthUtils.LOGIN_CONTEXT_CLIENT);
    if (configurationEntries == null) {
        String errorMessage = "Could not find a '"+AuthUtils.LOGIN_CONTEXT_CLIENT
                + "' entry in this configuration: Client cannot start.";
        throw new IOException(errorMessage);
    }

    _password = "";
    for(AppConfigurationEntry entry: configurationEntries) {
        if (entry.getOptions().get(USERNAME) != null) {
            _username = (String)entry.getOptions().get(USERNAME);
        }
        if (entry.getOptions().get(PASSWORD) != null) {
            _password = (String)entry.getOptions().get(PASSWORD);
        }
    }
}
 
开发者ID:metamx,项目名称:incubator-storm,代码行数:27,代码来源:ClientCallbackHandler.java

示例4: populateCredentials

@Override
public void populateCredentials(Map<String, String> credentials) {
    // Log the user in and get the TGT
    try {
        Configuration login_conf = AuthUtils.GetConfiguration(conf);
        ClientCallbackHandler client_callback_handler = new ClientCallbackHandler(login_conf);

        // login our user
        Configuration.setConfiguration(login_conf);
        LoginContext lc = new LoginContext(AuthUtils.LOGIN_CONTEXT_CLIENT, client_callback_handler);
        try {
            lc.login();
            final Subject subject = lc.getSubject();
            KerberosTicket tgt = getTGT(subject);

            if (tgt == null) { // error
                throw new RuntimeException("Fail to verify user principal with section \"" + AuthUtils.LOGIN_CONTEXT_CLIENT
                        + "\" in login configuration file " + login_conf);
            }

            if (!tgt.isForwardable()) {
                throw new RuntimeException("The TGT found is not forwardable");
            }

            if (!tgt.isRenewable()) {
                throw new RuntimeException("The TGT found is not renewable");
            }

            LOG.info("Pushing TGT for " + tgt.getClient() + " to topology.");
            saveTGT(tgt, credentials);
        } finally {
            lc.logout();
        }
    } catch (Exception e) {
        throw new RuntimeException(e);
    }
}
 
开发者ID:kkllwww007,项目名称:jstrom,代码行数:37,代码来源:AutoTGT.java

示例5: ClientCallbackHandler

/**
 * Constructor based on a JAAS configuration
 * 
 * For digest, you should have a pair of user name and password defined in this figgure.
 * 
 * @param configuration
 * @throws IOException
 */
public ClientCallbackHandler(Configuration configuration) throws IOException {
    if (configuration == null)
        return;
    AppConfigurationEntry configurationEntries[] = configuration.getAppConfigurationEntry(AuthUtils.LOGIN_CONTEXT_CLIENT);
    if (configurationEntries == null) {
        String errorMessage = "Could not find a '" + AuthUtils.LOGIN_CONTEXT_CLIENT + "' entry in this configuration: Client cannot start.";
        LOG.error(errorMessage);
        throw new IOException(errorMessage);
    }
}
 
开发者ID:kkllwww007,项目名称:jstrom,代码行数:18,代码来源:ClientCallbackHandler.java


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