[java-identity-provider COMMIT] in /trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml: profile/impl/BaseAddAt...

noreply at shibboleth.net noreply at shibboleth.net
Fri Dec 19 11:28:19 EST 2014


Author: iay
Date: Fri Dec 19 11:28:19 2014
New Revision: 7177

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7177&view=rev
Log:
Javadoc fixes.

Modified:
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/BaseAddAttributeStatementToAssertion.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/PopulateBindingAndEndpointContexts.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/ReloadMetadata.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml1/profile/impl/AddAttributeStatementToAssertion.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml1/profile/impl/AddAuthenticationStatementToAssertion.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml1/profile/impl/FilterByQueriedAttributeDesignators.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/AddAttributeStatementToAssertion.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/AddAuthnStatementToAssertion.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/FilterByQueriedAttributes.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ProcessLogoutRequest.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/session/impl/SAML1SPSessionCreationStrategy.java
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/session/impl/SAML2SPSessionCreationStrategy.java

Modified: trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/BaseAddAttributeStatementToAssertion.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/BaseAddAttributeStatementToAssertion.java?rev=7177&r1=7176&r2=7177&view=diff
==============================================================================
--- trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/BaseAddAttributeStatementToAssertion.java (original)
+++ trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/BaseAddAttributeStatementToAssertion.java Fri Dec 19 11:28:19 2014
@@ -46,7 +46,8 @@
 /**
  * Base class for actions that encode an {@link AttributeContext} into a SAML attribute statement.
 
- * <p>The {@link IdPAttribute} set to be encoded is drawn from an {@link AttributeContext} returned from a
+ * <p>The {@link net.shibboleth.idp.attribute.IdPAttribute} set to be encoded is drawn from
+ * an {@link AttributeContext} returned from a
  * lookup strategy, by default located on the {@link RelyingPartyContext} beneath the profile request context.</p>
  * 
  * @event {@link EventIds#PROCEED_EVENT_ID}
@@ -62,8 +63,9 @@
     private boolean statementInOwnAssertion;
 
     /**
-     * Whether attributes that result in an {@link AttributeEncodingException} when being encoded should be ignored or
-     * result in an {@link IdPEventIds#UNABLE_ENCODE_ATTRIBUTE} transition.
+     * Whether attributes that result in an {@link net.shibboleth.idp.attribute.AttributeEncodingException}
+     * when being encoded should be ignored or
+     * result in an {@link net.shibboleth.idp.profile.IdPEventIds#UNABLE_ENCODE_ATTRIBUTE} transition.
      */
     private boolean ignoringUnencodableAttributes;
 
@@ -123,19 +125,22 @@
     }
 
     /**
-     * Get whether the attributes that result in an {@link AttributeEncodingException} when being encoded should be
-     * ignored or result in an {@link net.shibboleth.idp.profile.IdPEventIds#UNABLE_ENCODE_ATTRIBUTE} transition.
-     * 
-     * @return whether the attributes that result in an {@link AttributeEncodingException} when being encoded should be
-     * ignored or result in an {@link net.shibboleth.idp.profile.IdPEventIds#UNABLE_ENCODE_ATTRIBUTE} transition
+     * Get whether the attributes that result in an {@link net.shibboleth.idp.attribute.AttributeEncodingException}
+     * when being encoded should be ignored or result in an
+     * {@link net.shibboleth.idp.profile.IdPEventIds#UNABLE_ENCODE_ATTRIBUTE} transition.
+     * 
+     * @return whether the attributes that result in an {@link net.shibboleth.idp.attribute.AttributeEncodingException}
+     *  when being encoded should be ignored or result in an
+     *  {@link net.shibboleth.idp.profile.IdPEventIds#UNABLE_ENCODE_ATTRIBUTE} transition
      */
     public boolean isIgnoringUnencodableAttributes() {
         return ignoringUnencodableAttributes;
     }
 
     /**
-     * Set whether the attributes that result in an {@link AttributeEncodingException} when being encoded should be
-     * ignored or result in an {@link net.shibboleth.idp.profile.IdPEventIds#UNABLE_ENCODE_ATTRIBUTE} transition.
+     * Set whether the attributes that result in an {@link net.shibboleth.idp.attribute.AttributeEncodingException}
+     *  when being encoded should be ignored or result in an
+     *  {@link net.shibboleth.idp.profile.IdPEventIds#UNABLE_ENCODE_ATTRIBUTE} transition.
      * 
      * @param flag flag to set
      */


[... 201 lines stripped ...]


More information about the commits mailing list