Package org.jboss.identity.federation.core.saml.v2.factories

Examples of org.jboss.identity.federation.core.saml.v2.factories.JBossSAMLAuthnRequestFactory


                        if(trace)
                           log.trace("Matched " + uriBit + " trust for " + issuerDomain );
                        return;
                     }
                  }
                  throw new IssuerNotTrustedException(issuer);
               }
            }
         }
         catch (Exception e)
         {  
            throw new ProcessingException(new IssuerNotTrustedException(e.getLocalizedMessage(),e));
         }
      }
View Full Code Here


                     if(trace)
                        log.trace("Matched " + uriBit + " trust for " + issuerDomain );
                     return;
                  }
               }
               throw new IssuerNotTrustedException(issuer);
            }
         }
      }
      catch (Exception e)
      {
         throw new IssuerNotTrustedException(e.getLocalizedMessage(),e);
      }
   }
View Full Code Here

         TrustType idpTrust =  idpConfiguration.getTrust();
         if(idpTrust != null)
         {
            String domainsTrusted = idpTrust.getDomains();
            if(domainsTrusted.indexOf(issuerDomain) < 0)
               throw new IssuerNotTrustedException(issuer);
         }
      }
      catch (Exception e)
      {
         throw new IssuerNotTrustedException(e.getLocalizedMessage(),e);
      }
   }
View Full Code Here

     
      sigAlg = URLEncoder.encode(sigAlg, "UTF-8");
     
      byte[] signedValue = SignatureUtil.sign(samlMessage, signingKey);
     
      PostBindingUtil.sendPost(new DestinationInfoHolder(destination, samlMessage, relayState),
            new SignatureInfoHolder(signedValue,sigAlg),response, true);
   }
View Full Code Here

            sigAlg = URLEncoder.encode(sigAlg, "UTF-8");
           
            byte[] signedValue = SignatureUtil.sign(samlResponse, signingKey);
            signatureHolder = new SignatureInfoHolder(signedValue,sigAlg);
         }
         PostBindingUtil.sendPost(new DestinationInfoHolder(responseType.getDestination(),
               samlResponse, relayState), signatureHolder, response, false);
      }
   }
View Full Code Here

      ByteArrayOutputStream baos = new ByteArrayOutputStream();
      saml2Request.marshall(authnRequest, baos);
      String samlMessage = PostBindingUtil.base64Encode(baos.toString())
      String destination = authnRequest.getDestination();
      PostBindingUtil.sendPost(new DestinationInfoHolder(destination, samlMessage, relayState),
             null,response, true);
   }
View Full Code Here

      ByteArrayOutputStream baos = new ByteArrayOutputStream();
      saml2Request.marshall(authnRequest, baos);
      String samlMessage = PostBindingUtil.base64Encode(baos.toString())
      String destination = authnRequest.getDestination();
      PostBindingUtil.sendPost(new DestinationInfoHolder(destination, samlMessage, relayState),
             response, true);
   }
View Full Code Here

     
      else
      {  
         String samlResponse = PostBindingUtil.base64Encode(new String(responseBytes));
         
         PostBindingUtil.sendPost(new DestinationInfoHolder(destination,
               samlResponse, relayState), response, false);
      }
   }
View Full Code Here

            sb.append("&RelayState=").append(relayState);
            HTTPRedirectUtil.sendRedirectForRequestor(singleSignOnServiceURL + sb.toString(), response);
         }
         else
         {
            DestinationInfoHolder destinationInfoHolder = new DestinationInfoHolder(singleSignOnServiceURL,
                  samlMessage, Integer.toString(relayState));
            PostBindingUtil.sendPost(destinationInfoHolder, response, true);
         }
      }
      catch (ConfigurationException e)
View Full Code Here

     
      else
      {  
         String samlResponse = PostBindingUtil.base64Encode(new String(responseBytes));
         
         PostBindingUtil.sendPost(new DestinationInfoHolder(destination,
               samlResponse, relayState), response, false);
      }
   }
View Full Code Here

TOP

Related Classes of org.jboss.identity.federation.core.saml.v2.factories.JBossSAMLAuthnRequestFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.