Exception used to convey that an error has happened when handling a WS-Trust request message.
305306307308309310311312313314315
(cPassword != null ? new String(cPassword) : null)); validateTarget.add(wsseUsernameToken); request.setValidateTarget(validateTarget); } catch (SOAPException e) { throw new WSTrustException(e); } } return super.issueToken(request);
967968969970971972973
* * @see org.picketlink.identity.federation.PicketLinkLogger#stsWSInvalidRequestTypeError(java.lang.String) */ @Override public WSTrustException stsWSInvalidRequestTypeError(String requestType) { return new WSTrustException(ErrorCodes.STS_INVALID_REQUEST_TYPE + requestType); }
1042104310441045104610471048
* * @see org.picketlink.identity.federation.PicketLinkLogger#stsCombinedSecretKeyError(java.lang.Throwable) */ @Override public WSTrustException wsTrustCombinedSecretKeyError(Throwable t) { return new WSTrustException(ErrorCodes.STS_COMBINED_SECRET_KEY_ERROR, t); }
1052105310541055105610571058
* * @see org.picketlink.identity.federation.PicketLinkLogger#stsClientPublicKeyError() */ @Override public WSTrustException wsTrustClientPublicKeyError() { return new WSTrustException(ErrorCodes.STS_CLIENT_PUBLIC_KEY_ERROR); }
1062106310641065106610671068
* * @see org.picketlink.identity.federation.PicketLinkLogger#stsError(java.lang.Throwable) */ @Override public WSTrustException stsError(Throwable t) { return new WSTrustException(t.getMessage(), t); }
1133113411351136113711381139
* * @see org.picketlink.identity.federation.PicketLinkLogger#stsKeyInfoTypeCreationError(java.lang.Throwable) */ @Override public WSTrustException stsKeyInfoTypeCreationError(Throwable t) { return new WSTrustException(ErrorCodes.PROCESSING_EXCEPTION + "Error creating KeyInfoType", t); }