Skip to content

Commit b4bdb5f

Browse files
authored
Merge pull request #4 from mendix/release/1.4.0
[UIA-429] Remove supporting microflows for Mendix SSO
2 parents b90ba4c + 061079f commit b4bdb5f

99 files changed

Lines changed: 1 addition & 8024 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Administration module
2-
The Administration module contains administration functionalities to manage local accounts and to see app statistics like runtime information, sessions and schedules events.
2+
The Administration module contains administration functionalities to manage local accounts and to see app statistics like runtime information, sessions and scheduled events.
33

44
## Features and limitations
55
- Management of User Accounts
@@ -11,15 +11,6 @@ The Administration module contains administration functionalities to manage loca
1111

1212
## Dependencies
1313
- Atlas_UI_Resources package
14-
- Mendix SSO module
15-
16-
## Mendix SSO
17-
If you want to use this module in combination with Mendix SSO, use the following steps:
18-
- Import the 'MendixSSO' module from the Marketplace (https://marketplace.mendix.com/link/component/111349)
19-
- Make sure to either exclude or delete the microflows in the 'MOVE_THIS' folder of the MendixSSO module.
20-
- Include the microflows prefixed with 'MendixSSO_' in the 'Mendix SSO' folder of the Administration module.
21-
- Configure the MendixSSO_AfterStartup microflow from the Administration module as the After startup microflow. If there is already an After startup microflow, do not replace it, but add the MendixSSO_AfterStartup microflow as a sub-microflow in the existing microflow.
22-
- If you previously used the Mendix SSO in your application, use the 'MendixSSO_MigrateUsersToAccount' microflow to migrate users from the MendixSSOUser to the Administration.Account specialization. Please read the instructions in the microflow carefully before executing the migration.
2314

2415
## License
2516
See included [LICENSE](LICENSE) file

Source/AdministrationModule.mpr

0 Bytes
Binary file not shown.

Source/javasource/administration/proxies/microflows/Microflows.java

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -32,28 +32,6 @@ public static void manageMyAccount(IContext context)
3232
Map<java.lang.String, Object> params = new HashMap<>();
3333
Core.microflowCall("Administration.ManageMyAccount").withParams(params).execute(context);
3434
}
35-
public static boolean mendixSSO_AfterStartup(IContext context)
36-
{
37-
Map<java.lang.String, Object> params = new HashMap<>();
38-
return (java.lang.Boolean) Core.microflowCall("Administration.MendixSSO_AfterStartup").withParams(params).execute(context);
39-
}
40-
public static mendixsso.proxies.MendixSSOUser mendixSSO_CreateUser(IContext context, mendixsso.proxies.UserProfile _userProfile, java.lang.String _uUID)
41-
{
42-
Map<java.lang.String, Object> params = new HashMap<>();
43-
params.put("UserProfile", _userProfile == null ? null : _userProfile.getMendixObject());
44-
params.put("UUID", _uUID);
45-
IMendixObject result = (IMendixObject)Core.microflowCall("Administration.MendixSSO_CreateUser").withParams(params).execute(context);
46-
return result == null ? null : mendixsso.proxies.MendixSSOUser.initialize(context, result);
47-
}
48-
public static mendixsso.proxies.MendixSSOUser mendixSSO_UpdateUser(IContext context, mendixsso.proxies.MendixSSOUser _user, mendixsso.proxies.UserProfile _userProfile, java.lang.String _uUID)
49-
{
50-
Map<java.lang.String, Object> params = new HashMap<>();
51-
params.put("User", _user == null ? null : _user.getMendixObject());
52-
params.put("UserProfile", _userProfile == null ? null : _userProfile.getMendixObject());
53-
params.put("UUID", _uUID);
54-
IMendixObject result = (IMendixObject)Core.microflowCall("Administration.MendixSSO_UpdateUser").withParams(params).execute(context);
55-
return result == null ? null : mendixsso.proxies.MendixSSOUser.initialize(context, result);
56-
}
5735
public static void newAccount(IContext context)
5836
{
5937
Map<java.lang.String, Object> params = new HashMap<>();

Source/javasource/mendixsso/actions/DecryptString.java

Lines changed: 0 additions & 131 deletions
This file was deleted.

Source/javasource/mendixsso/actions/EncryptString.java

Lines changed: 0 additions & 69 deletions
This file was deleted.

Source/javasource/mendixsso/actions/FindOrCreateUserWithUserInfo.java

Lines changed: 0 additions & 72 deletions
This file was deleted.

Source/javasource/mendixsso/actions/GenerateRandomPassword.java

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)