Lines Matching refs:samlResponse

123         Response samlResponse = null;
212 samlResponse = getSAMLResponse(xmlString);
214 issuer = samlResponse.getIssuer();
234 if (samlResponse != null) {
235 xmlString =samlResponse.toXMLString(true,true);
241 verifyResponse(realm,pepEntityID,samlResponse);
301 Response samlResponse = null;
353 samlResponse = ProtocolFactory.getInstance()
376 return samlResponse;
527 * @param samlResponse the <code>Response</code>.
531 Response samlResponse) throws SAML2Exception {
533 Response response = samlResponse;
535 if (samlResponse != null) {
537 Issuer issuer = samlResponse.getIssuer();
560 verifySignedResponse(pepEntityID,pdpEntityID, samlResponse);
574 String respID = samlResponse.getID();
575 List assertions = samlResponse.getAssertion();
587 List<EncryptedAssertion> encAssertions = samlResponse.getEncryptedAssertion();
640 samlResponse.getIssuer().getValue().trim();
674 response = createResponse(samlResponse,assertions);
698 * @param samlResponse the <code>Response</code> object.
703 private static Response createResponse(Response samlResponse,
707 response.setVersion(samlResponse.getVersion()) ;
708 response.setIssueInstant(samlResponse.getIssueInstant());
709 response.setID(samlResponse.getID());
710 response.setInResponseTo(samlResponse.getInResponseTo());
711 response.setIssuer(samlResponse.getIssuer());
712 response.setDestination(samlResponse.getDestination());
713 response.setExtensions(samlResponse.getExtensions());
714 response.setConsent(samlResponse.getConsent());
715 response.setStatus(samlResponse.getStatus());