[java-identity-provider COMMIT] in /trunk: idp-cas-impl/src/main/java/net/shibboleth/idp/cas/config/impl/LoginConfigu...

noreply at shibboleth.net noreply at shibboleth.net
Mon Apr 18 16:46:10 EDT 2016


Author: scantor
Date: Mon Apr 18 16:46:10 2016
New Revision: 8203

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=8203&view=rev
Log:
Add @since annotations for methods added in IDP-948.

Modified:
    trunk/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/config/impl/LoginConfiguration.java
    trunk/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/config/impl/ValidateConfiguration.java
    trunk/idp-profile-api/src/main/java/net/shibboleth/idp/profile/config/AbstractProfileConfiguration.java
    trunk/idp-profile-api/src/main/java/net/shibboleth/idp/relyingparty/RelyingPartyConfiguration.java
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/profile/config/AbstractSAMLProfileConfiguration.java
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/saml1/profile/config/AttributeQueryProfileConfiguration.java
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/saml1/profile/config/BrowserSSOProfileConfiguration.java
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/saml2/profile/config/AbstractSAML2ProfileConfiguration.java
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/saml2/profile/config/AttributeQueryProfileConfiguration.java
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/saml2/profile/config/BrowserSSOProfileConfiguration.java
    trunk/idp-saml-api/src/main/java/net/shibboleth/idp/saml/saml2/profile/config/SingleLogoutProfileConfiguration.java

Modified: trunk/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/config/impl/LoginConfiguration.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/config/impl/LoginConfiguration.java?rev=8203&r1=8202&r2=8203&view=diff
==============================================================================
--- trunk/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/config/impl/LoginConfiguration.java	(original)
+++ trunk/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/config/impl/LoginConfiguration.java	Mon Apr 18 16:46:10 2016
@@ -123,6 +123,8 @@
      * Set a lookup strategy for the {@link #defaultAuthenticationMethods} property.
      *
      * @param strategy  lookup strategy
+     * 
+     * @since 3.3.0
      */
     public void setDefaultAuthenticationMethodsLookupStrategy(
             @Nullable final Function<ProfileRequestContext,Collection<AuthnContextClassRefPrincipal>> strategy) {
@@ -153,6 +155,8 @@
      * Set a lookup strategy for the {@link #authenticationFlows} property.
      *
      * @param strategy  lookup strategy
+     * 
+     * @since 3.3.0
      */
     public void setAuthenticationFlowsLookupStrategy(
             @Nullable final Function<ProfileRequestContext,Set<String>> strategy) {
@@ -184,6 +188,8 @@
      * Set a lookup strategy for the {@link #postAuthenticationFlows} property.
      *
      * @param strategy  lookup strategy
+     * 
+     * @since 3.3.0
      */
     public void setPostAuthenticationFlowsLookupStrategy(
             @Nullable final Function<ProfileRequestContext,Collection<String>> strategy) {
@@ -211,6 +217,8 @@
      * Set a lookup strategy for the {@link #nameIDFormatPrecedence} property.
      *
      * @param strategy  lookup strategy
+     * 
+     * @since 3.3.0
      */
     public void setNameIDFormatPrecedenceLookupStrategy(
             @Nullable final Function<ProfileRequestContext,Collection<String>> strategy) {

Modified: trunk/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/config/impl/ValidateConfiguration.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/config/impl/ValidateConfiguration.java?rev=8203&r1=8202&r2=8203&view=diff
==============================================================================
--- trunk/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/config/impl/ValidateConfiguration.java	(original)
+++ trunk/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/config/impl/ValidateConfiguration.java	Mon Apr 18 16:46:10 2016
@@ -103,6 +103,8 @@
      * in CAS ticket validation response.
      * 
      * @param strategy lookup strategy
+     * 
+     * @since 3.3.0
      */
     public void setPGTIOUGeneratorLookupStrategy(
             @Nullable final Function<ProfileRequestContext,IdentifierGenerationStrategy> strategy) {
@@ -133,6 +135,8 @@
      * ticket requester matches the ticket validator.
      * 
      * @param strategy lookup strategy
+     * 
+     * @since 3.3.0
      */
     public void setServiceComparatorLookupStrategy(
             @Nullable final Function<ProfileRequestContext,Comparator<String>> strategy) {
@@ -174,6 +178,8 @@
      * in CAS ticket validation response.
      * 
      * @param strategy lookup strategy
+     * 
+     * @since 3.3.0
      */
     public void setUserAttributeLookupStrategy(@Nullable final Function<ProfileRequestContext,String> strategy) {
         userAttributeLookupStrategy = strategy;

Modified: trunk/idp-profile-api/src/main/java/net/shibboleth/idp/profile/config/AbstractProfileConfiguration.java

[... 473 lines stripped ...]


More information about the commits mailing list