本文整理汇总了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);
}
}
示例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;
}
示例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();
}
}
}
示例4: getClientUsername
import org.apache.ws.security.WSUsernameTokenPrincipal; //导入依赖的package包/类
protected String getClientUsername() {
WSUsernameTokenPrincipal client = (WSUsernameTokenPrincipal) context
.getUserPrincipal();
return client.getName();
}
示例5: getClientPassword
import org.apache.ws.security.WSUsernameTokenPrincipal; //导入依赖的package包/类
protected String getClientPassword() {
WSUsernameTokenPrincipal client = (WSUsernameTokenPrincipal) context
.getUserPrincipal();
return client.getPassword();
}