[java-identity-provider COMMIT] in /trunk: idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/AttributeDeco...

noreply at shibboleth.net noreply at shibboleth.net
Wed Aug 17 01:32:45 BST 2011


Author: lajoie
Date: Wed Aug 17 01:32:45 2011
New Revision: 4019

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=4019&view=rev
Log:
Add attribute decoder interface
Add some base classes for SAML name identifier and attribute encoders

Added:
    trunk/idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/AttributeDecoder.java   (with props)
    trunk/idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/AttributeDecodingException.java   (with props)
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/attribute/
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/attribute/AbstractSaml1AttributeEncoder.java   (with props)
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/attribute/AbstractSaml1NameIdentifierEncoder.java   (with props)
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/attribute/AbstractSaml2AttributeEncoder.java   (with props)
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/attribute/AbstractSaml2NameIdentifierEncoder.java   (with props)
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/attribute/AbstractSamlAttributeEncoder.java   (with props)
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/attribute/AbstractSamlNameIdentifierEncoder.java   (with props)
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/attribute/package-info.java   (with props)
Modified:
    trunk/idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/AttributeEncoder.java
    trunk/idp-metadata-api/src/main/java/net/shibboleth/idp/metadata/MetadataResolver.java

Modified: trunk/idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/AttributeEncoder.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/AttributeEncoder.java?rev=4019&r1=4018&r2=4019&view=diff
==============================================================================
--- trunk/idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/AttributeEncoder.java (original)
+++ trunk/idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/AttributeEncoder.java Wed Aug 17 01:32:45 2011
@@ -30,7 +30,7 @@
 public interface AttributeEncoder<EncodedType> {
     
     /**
-     * Gets the identifier of the protocol targeted by this encounter.  Note, some protocols
+     * Gets the identifier of the protocol targeted by this encoder.  Note, some protocols
      * may have different types of encoders that are used to encode attributes in to different
      * parts of the protocol message.  This identifier should not be used to distinguish between
      * the different message structure, it should only identify the protocol itself.
@@ -38,7 +38,7 @@
      * @return identifier of the protocol targeted by this encounter
      */
     public String getProtocol();
-    
+        
     /**
      * Encodes the attribute into a protocol specific representations.
      * 

Modified: trunk/idp-metadata-api/src/main/java/net/shibboleth/idp/metadata/MetadataResolver.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-metadata-api/src/main/java/net/shibboleth/idp/metadata/MetadataResolver.java?rev=4019&r1=4018&r2=4019&view=diff
==============================================================================
--- trunk/idp-metadata-api/src/main/java/net/shibboleth/idp/metadata/MetadataResolver.java (original)
+++ trunk/idp-metadata-api/src/main/java/net/shibboleth/idp/metadata/MetadataResolver.java Wed Aug 17 01:32:45 2011
@@ -22,7 +22,7 @@
 import org.opensaml.util.resolver.Resolver;
 
 /**
- * Resolver that locates and returns one or more metdata elements that meet a given set of criteria.
+ * Resolver that locates and returns one or more metadata elements that meet a given set of criteria.
  * 
  * @param <MetadataType> type of metadata returned by the resolver
  */



More information about the commits mailing list