Java Code Examples for org.opensaml.saml.saml2.core.Attribute#setName()
The following examples show how to use
org.opensaml.saml.saml2.core.Attribute#setName() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AttributeTranslatorTests.java From verify-service-provider with MIT License | 6 votes |
@Test public void shouldReturnAddressAttribute() { Attribute addressAttribute = new AddressAttributeBuilder_1_1() .addAddress(new AddressAttributeValueBuilder_1_1() .addLines(Arrays.asList("10 Whitechapel High St", "London")) .withPostcode("E1 8DX") .withFrom(DateTime.parse("2017-07-03")) .withTo(DateTime.parse("2017-07-30")) .build()) .buildCurrentAddress(); addressAttribute.setName("currentaddress"); AttributeStatement attributeStatement = anAttributeStatement() .addAttribute(addressAttribute) .addAttribute(createVerifiedAttribute("currentaddress_verified", true)) .build(); Attributes result = AttributeTranslator.translateAttributes(attributeStatement); assertThat(result.getAddress()).isNotNull(); }
Example 2
Source File: UnsignedAssertionResponseHandlerTest.java From verify-service-provider with MIT License | 6 votes |
private Attribute createEncryptedAssertionKeysAttribute(List<String> keys) { List<EncryptedAssertionKeys> assertionKeysValues = new ArrayList<>(); for (String key : keys) { EncryptedAssertionKeys attributeValue = new EncryptedAssertionKeysBuilder().buildObject(); attributeValue.setValue(key); assertionKeysValues.add(attributeValue); } Attribute attribute = (Attribute) XMLObjectSupport.buildXMLObject(Attribute.DEFAULT_ELEMENT_NAME); attribute.setName(IdaConstants.Eidas_Attributes.UnsignedAssertions.EncryptedSecretKeys.NAME); attribute.setFriendlyName(IdaConstants.Eidas_Attributes.UnsignedAssertions.EncryptedSecretKeys.FRIENDLY_NAME); attribute.setNameFormat(Attribute.URI_REFERENCE); attribute.getAttributeValues().addAll(assertionKeysValues); return attribute; }
Example 3
Source File: MockSamlIdpServer.java From deprecated-security-advanced-modules with Apache License 2.0 | 5 votes |
private String createSamlAuthResponse(AuthnRequest authnRequest) { try { Response response = createSamlElement(Response.class); response.setID(nextId()); if (authnRequest != null) { response.setInResponseTo(authnRequest.getID()); } response.setVersion(SAMLVersion.VERSION_20); response.setStatus(createStatus(StatusCode.SUCCESS)); response.setIssueInstant(new DateTime()); Assertion assertion = createSamlElement(Assertion.class); response.getAssertions().add(assertion); assertion.setID(nextId()); assertion.setIssueInstant(new DateTime()); assertion.setIssuer(createIssuer()); AuthnStatement authnStatement = createSamlElement(AuthnStatement.class); assertion.getAuthnStatements().add(authnStatement); authnStatement.setAuthnInstant(new DateTime()); authnStatement.setSessionIndex(nextId()); authnStatement.setAuthnContext(createAuthnCotext()); Subject subject = createSamlElement(Subject.class); assertion.setSubject(subject); subject.setNameID(createNameID(NameIDType.UNSPECIFIED, authenticateUser)); if (authnRequest != null) { subject.getSubjectConfirmations() .add(createSubjectConfirmation("urn:oasis:names:tc:SAML:2.0:cm:bearer", new DateTime().plusMinutes(1), authnRequest.getID(), authnRequest.getAssertionConsumerServiceURL())); } else { subject.getSubjectConfirmations().add(createSubjectConfirmation("urn:oasis:names:tc:SAML:2.0:cm:bearer", new DateTime().plusMinutes(1), null, defaultAssertionConsumerService)); } Conditions conditions = createSamlElement(Conditions.class); assertion.setConditions(conditions); conditions.setNotBefore(new DateTime()); conditions.setNotOnOrAfter(new DateTime().plusMinutes(1)); if (authenticateUserRoles != null) { AttributeStatement attributeStatement = createSamlElement(AttributeStatement.class); assertion.getAttributeStatements().add(attributeStatement); Attribute attribute = createSamlElement(Attribute.class); attributeStatement.getAttributes().add(attribute); attribute.setName("roles"); attribute.setNameFormat("urn:oasis:names:tc:SAML:2.0:attrname-format:basic"); for (String role : authenticateUserRoles) { attribute.getAttributeValues().add(createXSAny(AttributeValue.DEFAULT_ELEMENT_NAME, role)); } } if (signResponses) { Signature signature = createSamlElement(Signature.class); assertion.setSignature(signature); signature.setSigningCredential(this.signingCredential); signature.setSignatureAlgorithm(SignatureConstants.ALGO_ID_SIGNATURE_RSA_SHA1); signature.setCanonicalizationAlgorithm(SignatureConstants.ALGO_ID_C14N_EXCL_OMIT_COMMENTS); XMLObjectProviderRegistrySupport.getMarshallerFactory().getMarshaller(assertion).marshall(assertion); Signer.signObject(signature); } String marshalledXml = marshallSamlXml(response); return Base64Support.encode(marshalledXml.getBytes("UTF-8"), Base64Support.UNCHUNKED); } catch (MarshallingException | SignatureException | UnsupportedEncodingException e) { throw new RuntimeException(e); } }
Example 4
Source File: AuthnRequestFactory.java From verify-service-provider with MIT License | 5 votes |
private Extensions createExtensions() { Extensions extensions = new ExtensionsBuilder().buildObject(); Attribute versionsAttribute = new AttributeBuilder().buildObject(); versionsAttribute.setName("Versions"); versionsAttribute.getAttributeValues().add(createApplicationVersion()); extensions.getUnknownXMLObjects().add(encrypt(versionsAttribute)); return extensions; }
Example 5
Source File: AssertionHelper.java From verify-service-provider with MIT License | 5 votes |
private static AttributeStatement anAttributeStatementContainingAnEidasUnsignedResponse(String countrySamlResponseValue, List<String> encryptedKeys) { CountrySamlResponse countrySamlAttributeValue = new CountrySamlResponseBuilder().buildObject(); countrySamlAttributeValue.setValue(countrySamlResponseValue); Attribute countrySamlAttribute = (Attribute) XMLObjectSupport.buildXMLObject(Attribute.DEFAULT_ELEMENT_NAME); countrySamlAttribute.setName(IdaConstants.Eidas_Attributes.UnsignedAssertions.EidasSamlResponse.NAME); countrySamlAttribute.setFriendlyName(IdaConstants.Eidas_Attributes.UnsignedAssertions.EidasSamlResponse.FRIENDLY_NAME); countrySamlAttribute.setNameFormat(Attribute.URI_REFERENCE); countrySamlAttribute.getAttributeValues().add(countrySamlAttributeValue); List<EncryptedAssertionKeys> assertionKeysValues = new ArrayList<>(); for (String key : encryptedKeys) { EncryptedAssertionKeys keysAttribtueValue = new EncryptedAssertionKeysBuilder().buildObject(); keysAttribtueValue.setValue(key); assertionKeysValues.add(keysAttribtueValue); } Attribute keysAttribute = (Attribute) XMLObjectSupport.buildXMLObject(Attribute.DEFAULT_ELEMENT_NAME); keysAttribute.setName(IdaConstants.Eidas_Attributes.UnsignedAssertions.EncryptedSecretKeys.NAME); keysAttribute.setFriendlyName(IdaConstants.Eidas_Attributes.UnsignedAssertions.EncryptedSecretKeys.FRIENDLY_NAME); keysAttribute.setNameFormat(Attribute.URI_REFERENCE); keysAttribute.getAttributeValues().addAll(assertionKeysValues); return anAttributeStatement() .addAttribute(countrySamlAttribute) .addAttribute(keysAttribute) .build(); }
Example 6
Source File: AttributeTranslatorTests.java From verify-service-provider with MIT License | 5 votes |
@Test public void shouldReturnAddressHistoryAttribute() { Attribute addressHistoryAttribute = new AddressAttributeBuilder_1_1() .addAddress(new AddressAttributeValueBuilder_1_1() .addLines(Arrays.asList("10 Whitechapel High St", "London")) .withPostcode("E1 8DX") .withFrom(DateTime.parse("2017-07-03")) .withTo(DateTime.parse("2017-07-30")) .withVerified(true) .build()) .addAddress(new AddressAttributeValueBuilder_1_1() .addLines(Arrays.asList("42 Old Road", "London")) .withPostcode("W1 0AA") .withFrom(DateTime.parse("2015-01-01")) .withTo(DateTime.parse("2017-07-03")) .withVerified(true) .build()) .buildPreviousAddress(); addressHistoryAttribute.setName("addresshistory"); AttributeStatement attributeStatement = anAttributeStatement() .addAttribute(addressHistoryAttribute) .build(); Attributes result = AttributeTranslator.translateAttributes(attributeStatement); assertThat(result.getAddressHistory()).isNotNull(); assertThat(result.getAddressHistory().size()).isEqualTo(2); }
Example 7
Source File: AttributeTranslatorTests.java From verify-service-provider with MIT License | 5 votes |
@Test public void shouldReturnCorrectValuesForAddressAttribute() { List<String> lines = Arrays.asList("10 Whitechapel High St", "London"); String postCode = "E1 8DX"; DateTime from = DateTime.parse("2017-07-03T12:00:00+01:00"); DateTime to = DateTime.parse("2017-07-30T12:00:00+01:00"); Attribute addressAttribute = new AddressAttributeBuilder_1_1() .addAddress(new AddressAttributeValueBuilder_1_1() .addLines(lines) .withPostcode(postCode) .withFrom(from) .withTo(to) .build()) .buildCurrentAddress(); addressAttribute.setName("currentaddress"); AttributeStatement attributeStatement = anAttributeStatement() .addAttribute(addressAttribute) .addAttribute(createVerifiedAttribute("currentaddress_verified", true)) .build(); Attributes result = AttributeTranslator.translateAttributes(attributeStatement); assertThat(result.getAddress().getValue().getLines()).isEqualTo(lines); assertThat(result.getAddress().getValue().getPostCode()).isEqualTo(postCode); assertThat(result.getAddress().getValue().getFromDate()).hasToString(from.toLocalDate().toString()); assertThat(result.getAddress().getValue().getToDate()).hasToString(to.toLocalDate().toString()); }
Example 8
Source File: UnsignedAssertionResponseHandlerTest.java From verify-service-provider with MIT License | 5 votes |
private Attribute createCountrySamlResponseAttribute(String countrySaml) { CountrySamlResponse attributeValue = new CountrySamlResponseBuilder().buildObject(); attributeValue.setValue(countrySaml); Attribute attribute = (Attribute) XMLObjectSupport.buildXMLObject(Attribute.DEFAULT_ELEMENT_NAME); attribute.setName(IdaConstants.Eidas_Attributes.UnsignedAssertions.EidasSamlResponse.NAME); attribute.setFriendlyName(IdaConstants.Eidas_Attributes.UnsignedAssertions.EidasSamlResponse.FRIENDLY_NAME); attribute.setNameFormat(Attribute.URI_REFERENCE); attribute.getAttributeValues().add(attributeValue); return attribute; }
Example 9
Source File: SamlResponseHelper.java From verify-service-provider with MIT License | 5 votes |
public static Attribute createVerifiedAttribute(String name, boolean value) { Attribute attribute = new OpenSamlXmlObjectFactory().createAttribute(); attribute.setName(name); XMLObjectBuilderFactory builderFactory = XMLObjectProviderRegistrySupport.getBuilderFactory(); Verified verifiedValue = (Verified) builderFactory.getBuilder(Verified.TYPE_NAME).buildObject(Verified.DEFAULT_ELEMENT_NAME, Verified.TYPE_NAME); verifiedValue.setValue(value); attribute.getAttributeValues().add(verifiedValue); return attribute; }
Example 10
Source File: NonMatchingEidasAcceptanceTest.java From verify-service-provider with MIT License | 4 votes |
private Attribute anAttribute(String name) { Attribute attribute = openSamlXmlObjectFactory.createAttribute(); attribute.setName(name); return attribute; }