-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optionally create/update managed groups in Adobe IMS
This leverages the UMAPI This closes #698
- Loading branch information
Showing
23 changed files
with
615 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...n/java/biz/netcentric/cq/tools/actool/externalusermanagement/ExternalGroupManagement.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package biz.netcentric.cq.tools.actool.externalusermanagement; | ||
|
||
import java.io.IOException; | ||
import java.util.Collection; | ||
|
||
import biz.netcentric.cq.tools.actool.configmodel.AuthorizableConfigBean; | ||
|
||
/** | ||
* Implementations of this service synchronize (i.e. create/update/delete) groups in an external directory (outside AEM). | ||
*/ | ||
public interface ExternalGroupManagement { | ||
void updateGroups(Collection<AuthorizableConfigBean> groupConfigs) throws IOException; | ||
|
||
/** | ||
* | ||
* @return a label for the external group management tool (e.g. IMS) | ||
*/ | ||
String getLabel(); | ||
} |
Oops, something went wrong.