-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve organization user invitation and user sharing
- Loading branch information
1 parent
d2b90cf
commit 3cfd8de
Showing
9 changed files
with
258 additions
and
81 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
217 changes: 143 additions & 74 deletions
217
...o2/carbon/identity/organization/user/invitation/management/InvitationCoreServiceImpl.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
30 changes: 30 additions & 0 deletions
30
...carbon/identity/organization/user/invitation/management/models/SharedUserAssociation.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,30 @@ | ||
package org.wso2.carbon.identity.organization.user.invitation.management.models; | ||
|
||
/** | ||
* Model class to represent the shared user association. | ||
*/ | ||
public class SharedUserAssociation { | ||
|
||
private String sharedUserId; | ||
private String sharedUserOrganizationId; | ||
|
||
public String getSharedUserId() { | ||
|
||
return sharedUserId; | ||
} | ||
|
||
public void setSharedUserId(String sharedUserId) { | ||
|
||
this.sharedUserId = sharedUserId; | ||
} | ||
|
||
public String getSharedUserOrganizationId() { | ||
|
||
return sharedUserOrganizationId; | ||
} | ||
|
||
public void setSharedUserOrganizationId(String sharedUserOrganizationId) { | ||
|
||
this.sharedUserOrganizationId = sharedUserOrganizationId; | ||
} | ||
} |
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