[java-identity-provider] branch main updated: Missed a refactoring point.

Scott Cantor cantor.2 at osu.edu
Thu Mar 10 15:27:53 UTC 2022


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=2b00e5d623fe3d5fc32c1d9f0454dc73a22d0ebb

The following commit(s) were added to refs/heads/main by this push:
     new 2b00e5d62 Missed a refactoring point.
2b00e5d62 is described below

commit 2b00e5d623fe3d5fc32c1d9f0454dc73a22d0ebb
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Mar 10 10:27:50 2022 -0500

    Missed a refactoring point.
---
 .../shibboleth/idp/admin/AdministrativeFlowDescriptor.java  | 13 +++----------
 1 file changed, 3 insertions(+), 10 deletions(-)

diff --git a/idp-admin-api/src/main/java/net/shibboleth/idp/admin/AdministrativeFlowDescriptor.java b/idp-admin-api/src/main/java/net/shibboleth/idp/admin/AdministrativeFlowDescriptor.java
index 114acbfc6..e964efe1b 100644
--- a/idp-admin-api/src/main/java/net/shibboleth/idp/admin/AdministrativeFlowDescriptor.java
+++ b/idp-admin-api/src/main/java/net/shibboleth/idp/admin/AdministrativeFlowDescriptor.java
@@ -24,6 +24,7 @@ import org.opensaml.saml.ext.saml2mdui.UIInfo;
 
 import net.shibboleth.idp.authn.config.AuthenticationProfileConfiguration;
 import net.shibboleth.idp.profile.FlowDescriptor;
+import net.shibboleth.idp.profile.config.AttributeResolvingProfileConfiguration;
 
 /**
  * A descriptor for an administrative flow.
@@ -36,7 +37,8 @@ import net.shibboleth.idp.profile.FlowDescriptor;
  * 
  * @since 3.3.0
  */
-public interface AdministrativeFlowDescriptor extends FlowDescriptor, AuthenticationProfileConfiguration {
+public interface AdministrativeFlowDescriptor
+        extends FlowDescriptor, AuthenticationProfileConfiguration, AttributeResolvingProfileConfiguration {
     
     /**
      * Get a logging ID to use when auditing this profile.
@@ -79,15 +81,6 @@ public interface AdministrativeFlowDescriptor extends FlowDescriptor, Authentica
      */
     @Nullable String getPolicyName(@Nullable final ProfileRequestContext profileRequestContext);
 
-    /**
-     * Get whether to resolve attributes during the profile (default is false).
-     * 
-     * @param profileRequestContext current profile request context
-     * 
-     * @return whether to resolve attributes during the profile
-     */
-    boolean isResolveAttributes(@Nullable final ProfileRequestContext profileRequestContext);
-
     /** {@inheritDoc} */
     @Override
     default boolean isLocal() {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list