[java-shib-attribute] branch main updated: Fix typo in schema attribute name.

Daniel Fisher dfisher at vt.edu
Thu Aug 24 02:16:09 UTC 2023


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

dfisher pushed a commit to branch main
in repository java-shib-attribute.

View the commit online:
http://git.shibboleth.net/view/?p=java-shib-attribute.git;a=commit;h=47e69f41afc59ede280bb82a9724a23aa4092fea

The following commit(s) were added to refs/heads/main by this push:
     new 47e69f41a Fix typo in schema attribute name.
47e69f41a is described below

commit 47e69f41afc59ede280bb82a9724a23aa4092fea
Author: Daniel Fisher <dfisher at vt.edu>
AuthorDate: Wed Aug 23 22:10:05 2023 -0400

    Fix typo in schema attribute name.
    
    searchOperator should be searchOperation.
---
 .../resolver/spring/dc/ldap/impl/LDAPDataConnectorParser.java         | 2 +-
 .../src/main/resources/schema/shibboleth-attribute-resolver.xsd       | 4 ++--
 .../resolver/spring/dc/ldap/resolver/ldap-attribute-resolver-ref.xml  | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/shib-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/dc/ldap/impl/LDAPDataConnectorParser.java b/shib-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/dc/ldap/impl/LDAPDataConnectorParser.java
index feb8b2aaa..98c0db833 100644
--- a/shib-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/dc/ldap/impl/LDAPDataConnectorParser.java
+++ b/shib-attribute-resolver-spring/src/main/java/net/shibboleth/idp/attribute/resolver/spring/dc/ldap/impl/LDAPDataConnectorParser.java
@@ -440,7 +440,7 @@ public class LDAPDataConnectorParser extends AbstractDataConnectorParser {
          * @return Search Operation bean ID
          */
         @Nullable public String getBeanSearchOperationID() {
-            return AttributeSupport.getAttributeValue(configElement, null, "searchOperatorRef");
+            return AttributeSupport.getAttributeValue(configElement, null, "searchOperationRef");
         }
 
         /**
diff --git a/shib-attribute-resolver-spring/src/main/resources/schema/shibboleth-attribute-resolver.xsd b/shib-attribute-resolver-spring/src/main/resources/schema/shibboleth-attribute-resolver.xsd
index b297984f1..cca79e74f 100644
--- a/shib-attribute-resolver-spring/src/main/resources/schema/shibboleth-attribute-resolver.xsd
+++ b/shib-attribute-resolver-spring/src/main/resources/schema/shibboleth-attribute-resolver.xsd
@@ -1039,10 +1039,10 @@
                         </documentation>
                     </annotation>
                 </attribute>
-                <attribute name="searchOperatorRef" type="resolver:string">
+                <attribute name="searchOperationRef" type="resolver:string">
                     <annotation>
                         <documentation>
-                            Reference to a Spring bean providing the Search Operator implementation to use.
+                            Reference to a Spring bean providing the Search Operation implementation to use.
                         </documentation>
                     </annotation>
                 </attribute>
diff --git a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/dc/ldap/resolver/ldap-attribute-resolver-ref.xml b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/dc/ldap/resolver/ldap-attribute-resolver-ref.xml
index 1341d70da..dd120b809 100644
--- a/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/dc/ldap/resolver/ldap-attribute-resolver-ref.xml
+++ b/shib-attribute-resolver-spring/src/test/resources/net/shibboleth/idp/attribute/resolver/spring/dc/ldap/resolver/ldap-attribute-resolver-ref.xml
@@ -7,7 +7,7 @@
         noRetryDelay="PT5M"
         mappingStrategyRef="mappings"
         connectionFactoryRef="connectionFactory"
-        searchOperatorRef="searchOperation"
+        searchOperationRef="searchOperation"
         validatorRef="validator">
         <ResultCache cacheManagerRef="cache"/>
     </DataConnector>

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


More information about the commits mailing list