This file contains hidden or 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
| public with sharing class JitHandler implements Auth.SamlJitHandler { | |
| public class JitException extends Exception {} | |
| public User createUser(Id samlSsoProviderId, Id communityId, Id portalId, | |
| String federationIdentifier, Map<String, String> attributes, String assertion) { | |
| User u = new User(); | |
| handleJit(true, u, samlSsoProviderId, communityId, portalId, | |
| federationIdentifier, attributes, assertion); | |
| return u; | |
| } |
OlderNewer