Download: StarUML.io
Source: jorgeancal
After installing StartUML successfully, modify LicenseManagerDomain.js
as follow:
/**
<!DOCTYPE html> | |
<html ng-app> | |
<head> | |
<title>Hello from AngularJS</title> | |
<script src="angular.min.js"></script> | |
</head> | |
<body> | |
<form action=""> |
Download: StarUML.io
Source: jorgeancal
After installing StartUML successfully, modify LicenseManagerDomain.js
as follow:
/**
// Concurrent-Session-Management from Template... | |
// This script will prompt concurrent session handling | |
// to one of the given roles | |
// If the user has any of the below roles, concurrent session handling will be prompted | |
// and it will either kill sessions or abort login based on number of active concurrent user sessions | |
var rolesToStepUp = ['admin', 'manager']; | |
var maxSessionCount = 1; |
authentication.authenticator.session_handler.parameters.max_session_count = "2" |
// Concurrent-Session-Management from Template... | |
// This script will prompt concurrent session handling | |
// to one of the given roles | |
// If the user has any of the below roles, concurrent session handling will be prompted | |
// and it will either kill sessions or abort login based on number of active concurrent user sessions | |
var rolesToStepUp = ['admin', 'manager']; | |
var maxSessionCount = 1; | |
function onLoginRequest(context) { |
// Concurrent-Session-Management from Template... | |
// This script will prompt concurrent session handling | |
// to one of the given roles | |
// If the user has any of the below roles, concurrent session handling will be prompted | |
// and it will either kill sessions or abort login based on number of active concurrent user sessions | |
var rolesToStepUp = ['admin', 'manager']; | |
var maxSessionCount = 1; | |
function onLoginRequest(context) { |
var sessions = getUserSessions(user); | |
for(var key in sessions) { | |
Log.info(sessions[key].userAgent.browser); // Print the web browser of each user session | |
} |
<?xml version="1.0" encoding="UTF-8"?> | |
<hazelcast xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.12.xsd" | |
xmlns="http://www.hazelcast.com/schema/config" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<network> | |
<interfaces enabled="true"> | |
<interface>10.0.*.*</interface> | |
</interfaces> | |
<join> | |
<multicast enabled="false"/> |
EnableSAML2SSOLogin=true | |
#Url to do send SAML2 SSO AuthnRequest | |
SAML2SSOURL=samlsso | |
#URIs to skip SSOAgentFilter; comma separated values | |
SkipURIs= | |
IndexPage=/SampleApp/index.html |
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
~ Copyright (c) 2020, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. | |
~ | |
~ WSO2 Inc. 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 | |
~ |