-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #252 from sadilchamishka/refactor-user-sharing-code
Refactor organization user sharing implementation and implement user sharing on sub-organization creation.
- Loading branch information
Showing
30 changed files
with
1,479 additions
and
620 deletions.
There are no files selected for viewing
174 changes: 174 additions & 0 deletions
174
...onents/org.wso2.carbon.identity.organization.management.organization.user.sharing/pom.xml
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,174 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
~ Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). | ||
~ | ||
~ WSO2 LLC. licenses this file to you under the Apache License, | ||
~ Version 2.0 (the "License"); you may not use this file except | ||
~ in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, | ||
~ software distributed under the License is distributed on an | ||
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
~ KIND, either express or implied. See the License for the | ||
~ specific language governing permissions and limitations | ||
~ under the License. | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<groupId>org.wso2.carbon.identity.organization.management</groupId> | ||
<artifactId>identity-organization-management</artifactId> | ||
<version>1.3.93-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>org.wso2.carbon.identity.organization.management.organization.user.sharing</artifactId> | ||
<name>WSO2 - Organization User Sharing Service</name> | ||
<packaging>bundle</packaging> | ||
|
||
<properties> | ||
<maven.compiler.source>11</maven.compiler.source> | ||
<maven.compiler.target>11</maven.compiler.target> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.wso2.carbon</groupId> | ||
<artifactId>org.wso2.carbon.utils</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wso2.carbon.identity.organization.management.core</groupId> | ||
<artifactId>org.wso2.carbon.identity.organization.management.service</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wso2.carbon.identity.organization.management</groupId> | ||
<artifactId>org.wso2.carbon.identity.organization.management.ext</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wso2.carbon.identity.organization.management</groupId> | ||
<artifactId>org.wso2.carbon.identity.organization.management.role.management.service</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wso2.carbon.identity.framework</groupId> | ||
<artifactId>org.wso2.carbon.identity.core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wso2.carbon.utils</groupId> | ||
<artifactId>org.wso2.carbon.database.utils</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wso2.carbon</groupId> | ||
<artifactId>org.wso2.carbon.user.core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wso2.carbon.identity.framework</groupId> | ||
<artifactId>org.wso2.carbon.identity.event</artifactId> | ||
</dependency> | ||
<!--Test Dependencies--> | ||
<dependency> | ||
<groupId>org.testng</groupId> | ||
<artifactId>testng</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-core</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.powermock</groupId> | ||
<artifactId>powermock-api-mockito2</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.powermock</groupId> | ||
<artifactId>powermock-module-testng</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.h2database</groupId> | ||
<artifactId>h2</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<instructions> | ||
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> | ||
<Bundle-Name>${project.artifactId}</Bundle-Name> | ||
<Bundle-Description>Organization User Association Management Service Bundle</Bundle-Description> | ||
<Private-Package> | ||
org.wso2.carbon.identity.organization.management.organization.user.sharing.internal | ||
</Private-Package> | ||
<Export-Package> | ||
!org.wso2.carbon.identity.organization.management.organization.user.sharing.internal, | ||
org.wso2.carbon.identity.organization.management.organization.user.sharing.*; | ||
version="${identity.organization.management.exp.pkg.version}", | ||
</Export-Package> | ||
<Import-Package> | ||
javax.sql, | ||
org.apache.commons.logging; version="${org.apache.commons.logging.imp.pkg.version.range}", | ||
org.apache.commons.collections; version="${org.apache.commons.collections.imp.pkg.version.range}", | ||
org.apache.commons.lang;version="${org.apache.commons.lang.imp.pkg.version.range}", | ||
org.osgi.framework; version="${osgi.framework.imp.pkg.version.range}", | ||
org.osgi.service.component; version="${osgi.service.component.imp.pkg.version.range}", | ||
org.wso2.carbon.context;version="${carbon.kernel.package.import.version.range}", | ||
org.wso2.carbon.database.utils.jdbc;version="${org.wso2.carbon.database.utils.version.range}", | ||
org.wso2.carbon.database.utils.jdbc.exceptions;version="${org.wso2.carbon.database.utils.version.range}", | ||
org.wso2.carbon.identity.core;version="${carbon.identity.package.import.version.range}", | ||
org.wso2.carbon.identity.core.util;version="${carbon.identity.package.import.version.range}", | ||
org.wso2.carbon.identity.organization.management.service; version="${org.wso2.identity.organization.mgt.core.imp.pkg.version.range}", | ||
org.wso2.carbon.identity.organization.management.service.util;version="${org.wso2.identity.organization.mgt.imp.pkg.version.range}", | ||
org.wso2.carbon.identity.organization.management.service.exception;version="${org.wso2.identity.organization.mgt.imp.pkg.version.range}", | ||
org.wso2.carbon.identity.organization.management.service.model; version="${org.wso2.identity.organization.mgt.core.imp.pkg.version.range}", | ||
org.wso2.carbon.identity.organization.management.service.constant;version="${org.wso2.identity.organization.mgt.core.imp.pkg.version.range}", | ||
org.wso2.carbon.identity.organization.management.role.management.service;version="${org.wso2.identity.organization.mgt.imp.pkg.version.range}", | ||
org.wso2.carbon.identity.organization.management.role.management.service.models;version="${org.wso2.identity.organization.mgt.imp.pkg.version.range}", | ||
org.wso2.carbon.user.api;version="${carbon.user.api.imp.pkg.version.range}", | ||
org.wso2.carbon.user.core;version="${carbon.kernel.package.import.version.range}", | ||
org.wso2.carbon.user.core.common;version="${carbon.kernel.package.import.version.range}", | ||
org.wso2.carbon.user.core.listener;version="${carbon.kernel.package.import.version.range}", | ||
org.wso2.carbon.user.core.service;version="${carbon.kernel.package.import.version.range}", | ||
org.wso2.carbon.user.core.util;version="${carbon.kernel.package.import.version.range}", | ||
org.wso2.carbon.identity.event.handler; version="${carbon.identity.package.import.version.range}", | ||
org.wso2.carbon.identity.event.event; version="${carbon.identity.package.import.version.range}", | ||
org.wso2.carbon.identity.event; version="${carbon.identity.package.import.version.range}", | ||
org.wso2.carbon.identity.event.services; version="${carbon.identity.package.import.version.range}", | ||
</Import-Package> | ||
</instructions> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.jacoco</groupId> | ||
<artifactId>jacoco-maven-plugin</artifactId> | ||
<version>${jacoco.version}</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>prepare-agent</goal> | ||
</goals> | ||
</execution> | ||
<!-- attached to Maven test phase --> | ||
<execution> | ||
<id>report</id> | ||
<phase>test</phase> | ||
<goals> | ||
<goal>report</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
81 changes: 81 additions & 0 deletions
81
...ity/organization/management/organization/user/sharing/OrganizationUserSharingService.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,81 @@ | ||
/* | ||
* Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.wso2.carbon.identity.organization.management.organization.user.sharing; | ||
|
||
import org.wso2.carbon.identity.organization.management.organization.user.sharing.models.UserAssociation; | ||
import org.wso2.carbon.identity.organization.management.service.exception.OrganizationManagementException; | ||
|
||
/** | ||
* Service that manages the organization user sharing. | ||
*/ | ||
public interface OrganizationUserSharingService { | ||
|
||
/** | ||
* Creates the association between the shared user and the actual user in the organization. | ||
* | ||
* @param orgId Organization ID of the user is shared. | ||
* @param associatedUserId Actual user who is associated for a shared user. | ||
* @param associatedOrgId The organization ID associated user. | ||
* @throws OrganizationManagementException If an error occurs while creating the organization user association. | ||
*/ | ||
void shareOrganizationUser(String orgId, String associatedUserId, String associatedOrgId) | ||
throws OrganizationManagementException; | ||
|
||
/** | ||
* Unshare all the shared users for the given user. | ||
* | ||
* @param associatedUserId The ID of the associated user. | ||
* @param associatedOrgId The ID of the organization where the user is managed. | ||
* @return True if the user associations are deleted successfully. | ||
* @throws OrganizationManagementException If an error occurs while deleting the user associations. | ||
*/ | ||
boolean unshareOrganizationUsers(String associatedUserId, String associatedOrgId) | ||
throws OrganizationManagementException; | ||
|
||
/** | ||
* Delete the organization user association of the shared user. | ||
* | ||
* @param userId The ID of the user. | ||
* @param associatedOrgId The ID of organization where the user's identity is managed. | ||
* @return True if the organization user association is deleted successfully. | ||
* @throws OrganizationManagementException If an error occurs while deleting the organization user association. | ||
*/ | ||
boolean deleteUserAssociation(String userId, String associatedOrgId) throws OrganizationManagementException; | ||
|
||
/** | ||
* Get the user association of the associated user in a given organization. | ||
* | ||
* @param associatedUserId The ID of the user who is associated to the organization. | ||
* @param orgId The organization ID of the user. | ||
* @return The user association of the associated user within a given organization. | ||
* @throws OrganizationManagementException If an error occurs while retrieving the user association. | ||
*/ | ||
UserAssociation getUserAssociationOfAssociatedUserByOrgId(String associatedUserId, String orgId) | ||
throws OrganizationManagementException; | ||
|
||
/** | ||
* Get the user association of a user. | ||
* | ||
* @param userId The ID of user. | ||
* @param orgId The organization ID of the user. | ||
* @return The user association of the user. | ||
* @throws OrganizationManagementException If an error occurs while retrieving the user association. | ||
*/ | ||
UserAssociation getUserAssociation(String userId, String orgId) throws OrganizationManagementException; | ||
} |
Oops, something went wrong.