[java-identity-provider COMMIT] in /trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl:...
noreply at shibboleth.net
noreply at shibboleth.net
Wed Nov 12 18:56:14 EST 2014
Author: scantor
Date: Wed Nov 12 18:56:13 2014
New Revision: 6890
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=6890&view=rev
Log:
Put accidentally removed constructors back.
Modified:
trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/RequestedAttributesMapper.java
trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/SAML1AttributeDesignatorsMapper.java
trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/SAML2AttributesMapper.java
Modified: trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/RequestedAttributesMapper.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/RequestedAttributesMapper.java?rev=6890&r1=6889&r2=6890&view=diff
==============================================================================
--- trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/RequestedAttributesMapper.java (original)
+++ trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/RequestedAttributesMapper.java Wed Nov 12 18:56:13 2014
@@ -35,6 +35,11 @@
*
*/
public class RequestedAttributesMapper extends AbstractSAMLAttributesMapper<RequestedAttribute, IdPRequestedAttribute> {
+
+ /** Default constructor. */
+ public RequestedAttributesMapper() {
+
+ }
/**
* Generate a specific mapper to go from {@link RequestedAttribute} to {@link IdPRequestedAttribute} by inverting
Modified: trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/SAML1AttributeDesignatorsMapper.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/SAML1AttributeDesignatorsMapper.java?rev=6890&r1=6889&r2=6890&view=diff
==============================================================================
--- trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/SAML1AttributeDesignatorsMapper.java (original)
+++ trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/SAML1AttributeDesignatorsMapper.java Wed Nov 12 18:56:13 2014
@@ -34,6 +34,11 @@
*/
public class SAML1AttributeDesignatorsMapper extends AbstractSAMLAttributeDesignatorsMapper<IdPAttribute> {
+ /** Default constructor. */
+ public SAML1AttributeDesignatorsMapper() {
+
+ }
+
/**
* Generate a specific mapper to go from {@link org.opensaml.saml.saml1.core.AttributeDesignator} to
* {@link IdPAttribute} by inverting the function of the mappers in the profiled {@link AttributeResolver}.
Modified: trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/SAML2AttributesMapper.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/SAML2AttributesMapper.java?rev=6890&r1=6889&r2=6890&view=diff
==============================================================================
--- trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/SAML2AttributesMapper.java (original)
+++ trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/attribute/mapping/impl/SAML2AttributesMapper.java Wed Nov 12 18:56:13 2014
@@ -36,6 +36,11 @@
*/
public class SAML2AttributesMapper extends AbstractSAMLAttributesMapper<Attribute, IdPAttribute> {
+ /** Default constructor. */
+ public SAML2AttributesMapper() {
+
+ }
+
/**
* Generate a specific mapper to go from {@link Attribute} to {@link IdPAttribute} by inverting
* the function of the mappers in the profiled {@link AttributeResolver}.
More information about the commits
mailing list