You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by bd...@apache.org on 2022/11/30 21:14:23 UTC

[directory-scimple] branch jakarta-10-spring-fix created (now aee4bcb3)

This is an automated email from the ASF dual-hosted git repository.

bdemers pushed a change to branch jakarta-10-spring-fix
in repository https://gitbox.apache.org/repos/asf/directory-scimple.git


      at aee4bcb3 Fix: Add methods required for CDI 4 to Spring Shim

This branch includes the following new commits:

     new aee4bcb3 Fix: Add methods required for CDI 4 to Spring Shim

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[directory-scimple] 01/01: Fix: Add methods required for CDI 4 to Spring Shim

Posted by bd...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bdemers pushed a commit to branch jakarta-10-spring-fix
in repository https://gitbox.apache.org/repos/asf/directory-scimple.git

commit aee4bcb3f41b4c2840b312d913b00cb3aa0984eb
Author: Brian Demers <bd...@apache.org>
AuthorDate: Wed Nov 30 16:13:29 2022 -0500

    Fix: Add methods required for CDI 4 to Spring Shim
---
 .../directory/scim/spring/ScimpleSpringConfiguration.java      | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/support/spring-boot/src/main/java/org/apache/directory/scim/spring/ScimpleSpringConfiguration.java b/support/spring-boot/src/main/java/org/apache/directory/scim/spring/ScimpleSpringConfiguration.java
index 615664f6..4e5da665 100644
--- a/support/spring-boot/src/main/java/org/apache/directory/scim/spring/ScimpleSpringConfiguration.java
+++ b/support/spring-boot/src/main/java/org/apache/directory/scim/spring/ScimpleSpringConfiguration.java
@@ -161,6 +161,16 @@ public class ScimpleSpringConfiguration {
       beans.remove(instance);
     }
 
+    @Override
+    public Handle<T> getHandle() {
+      throw new NotImplementedException("This implementation does not support the `getHandle` method.");
+    }
+
+    @Override
+    public Iterable<? extends Handle<T>> handles() {
+      throw new NotImplementedException("This implementation does not support the `handles` method.");
+    }
+
     @Override
     public T get() {
       if (isAmbiguous()) {