本文整理汇总了Java中org.apache.ws.security.WSUsernameTokenPrincipal类的典型用法代码示例。如果您正苦于以下问题:Java WSUsernameTokenPrincipal类的具体用法?Java WSUsernameTokenPrincipal怎么用?Java WSUsernameTokenPrincipal使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
WSUsernameTokenPrincipal类属于org.apache.ws.security包,在下文中一共展示了WSUsernameTokenPrincipal类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: handleUsernameTokenPrincipal
import org.apache.ws.security.WSUsernameTokenPrincipal; //导入依赖的package包/类
@Override
protected void handleUsernameTokenPrincipal(UsernameTokenPrincipalCallback callback) throws IOException,
UnsupportedCallbackException {
UserDetails user = loadUserDetails(callback.getPrincipal().getName());
WSUsernameTokenPrincipal principal = callback.getPrincipal();
UsernamePasswordAuthenticationToken authRequest = new UsernamePasswordAuthenticationToken(
principal, principal.getPassword(), user.getAuthorities());
if (logger.isDebugEnabled()) {
logger.debug("Authentication success: " + authRequest.toString());
}
SecurityContextHolder.getContext().setAuthentication(authRequest);
if (user instanceof IUser) {
HttpSession session=ContextHolder.getHttpSession();
session.setAttribute(ContextHolder.LOGIN_USER_SESSION_KEY, user);
session.setAttribute(ContextHolder.USER_LOGIN_WAY_KEY,IWebservice.WS_LOGIN_WAY);
}
}
开发者ID:bsteker,项目名称:bdf2,代码行数:18,代码来源:DigestPasswordValidationCallbackHandler.java
示例2: getUsernameTokenPrincipal
import org.apache.ws.security.WSUsernameTokenPrincipal; //导入依赖的package包/类
/**
* Returns the UsernameTokenPrincipal from the security results.
*
* @param mc The message context of the message
* @return the UsernameTokenPrincipal from the security results as an
* <code>org.apache.ws.security.WSUsernameTokenPrincipal</code>.
* If a wsse:UsernameToken was not present in the wsse:Security header then
* <code>null</code> will be returned.
* @throws Exception If there are no security results.
* @see org.apache.ws.security.WSUsernameTokenPrincipal
*/
public static WSUsernameTokenPrincipal getUsernameTokenPrincipal(
MessageContext mc) throws Exception {
Vector results;
if ((results = (Vector) mc.getProperty(WSHandlerConstants.RECV_RESULTS)) == null) {
throw new Exception("No security results available in the message context");
} else {
for (int i = 0; i < results.size(); i++) {
WSHandlerResult rResult = (WSHandlerResult) results.get(i);
Vector wsSecEngineResults = rResult.getResults();
for (int j = 0; j < wsSecEngineResults.size(); j++) {
WSSecurityEngineResult wser =
(WSSecurityEngineResult) wsSecEngineResults.get(j);
Integer actInt = (Integer) wser
.get(WSSecurityEngineResult.TAG_ACTION);
if (actInt.intValue() == WSConstants.UT) {
return (WSUsernameTokenPrincipal) wser
.get(WSSecurityEngineResult.TAG_PRINCIPAL);
}
}
}
}
return null;
}
开发者ID:wso2,项目名称:carbon-identity-framework,代码行数:37,代码来源:WSS4JUtil.java
示例3: handle
import org.apache.ws.security.WSUsernameTokenPrincipal; //导入依赖的package包/类
public void handle(Callback[] callbacks) {
for (Callback callback : callbacks) {
if (callback instanceof WSUsernameTokenPrincipal) {
password = ((WSUsernameTokenPrincipal)callback).getPassword();
username = ((WSUsernameTokenPrincipal)callback).getName();
}
}
}
开发者ID:gildaslemoal,项目名称:elpi,代码行数:9,代码来源:SOAPEventHandlerNew.java
示例4: getClientUsername
import org.apache.ws.security.WSUsernameTokenPrincipal; //导入依赖的package包/类
protected String getClientUsername() {
WSUsernameTokenPrincipal client = (WSUsernameTokenPrincipal) context
.getUserPrincipal();
return client.getName();
}
开发者ID:GLORIA-project,项目名称:gloria-core,代码行数:7,代码来源:GSWebService.java
示例5: getClientPassword
import org.apache.ws.security.WSUsernameTokenPrincipal; //导入依赖的package包/类
protected String getClientPassword() {
WSUsernameTokenPrincipal client = (WSUsernameTokenPrincipal) context
.getUserPrincipal();
return client.getPassword();
}
开发者ID:GLORIA-project,项目名称:gloria-core,代码行数:7,代码来源:GSWebService.java
注:本文中的org.apache.ws.security.WSUsernameTokenPrincipal类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论