closing the current session and creating of a new session

0
I have a functionality to close the current session and then to add a new session in microflow. so, I need a help on this, how we can delete a session using java action?
asked
1 answers
0

Kooyal, 

 

To logout you can create a java action with the following code:

com.mendix.core.Core.logout(getContext().getSession());
return true;

 

Regards, Thijs

answered