Lines Matching defs:samlResponse

126         Response samlResponse = null;
215 samlResponse = getSAMLResponse(xmlString);
217 issuer = samlResponse.getIssuer();
237 if (samlResponse != null) {
238 xmlString =samlResponse.toXMLString(true,true);
244 verifyResponse(realm,pepEntityID,samlResponse);
304 Response samlResponse = null;
356 samlResponse = ProtocolFactory.getInstance()
379 return samlResponse;
530 * @param samlResponse the <code>Response</code>.
534 Response samlResponse) throws SAML2Exception {
536 Response response = samlResponse;
538 if (samlResponse != null) {
540 Issuer issuer = samlResponse.getIssuer();
563 verifySignedResponse(pepEntityID,pdpEntityID, samlResponse);
577 String respID = samlResponse.getID();
578 List assertions = samlResponse.getAssertion();
590 List<EncryptedAssertion> encAssertions = samlResponse.getEncryptedAssertion();
643 samlResponse.getIssuer().getValue().trim();
677 response = createResponse(samlResponse,assertions);
701 * @param samlResponse the <code>Response</code> object.
706 private static Response createResponse(Response samlResponse,
710 response.setVersion(samlResponse.getVersion()) ;
711 response.setIssueInstant(samlResponse.getIssueInstant());
712 response.setID(samlResponse.getID());
713 response.setInResponseTo(samlResponse.getInResponseTo());
714 response.setIssuer(samlResponse.getIssuer());
715 response.setDestination(samlResponse.getDestination());
716 response.setExtensions(samlResponse.getExtensions());
717 response.setConsent(samlResponse.getConsent());
718 response.setStatus(samlResponse.getStatus());