public final class ScimUtils
extends java.lang.Object
This product is licensed to you under the Apache License, Version 2.0 (the "License"). You may not use this product except in compliance with the License.
This product includes a number of subcomponents with separate copyright notices and license terms. Your use of these subcomponents is subject to the terms and conditions of the subcomponent's license, as noted in the LICENSE file.
| Modifier and Type | Method and Description |
|---|---|
static org.cloudfoundry.identity.uaa.codestore.ExpiringCode |
getExpiringCode(org.cloudfoundry.identity.uaa.codestore.ExpiringCodeStore codeStore,
java.lang.String userId,
java.lang.String email,
java.lang.String clientId,
java.lang.String redirectUri)
Generates a 1 hour expiring code.
|
static java.net.URL |
getVerificationURL(org.cloudfoundry.identity.uaa.codestore.ExpiringCode expiringCode)
Returns a verification URL that may be sent to a user.
|
public static org.cloudfoundry.identity.uaa.codestore.ExpiringCode getExpiringCode(org.cloudfoundry.identity.uaa.codestore.ExpiringCodeStore codeStore,
java.lang.String userId,
java.lang.String email,
java.lang.String clientId,
java.lang.String redirectUri)
codeStore - the code store to use, must not be nulluserId - the user id that will be included in the code's data, must not be nullemail - the email that will be included in the code's data, must not be nullclientId - client id that will be included in the code's data, must not be nullredirectUri - the redirect uri that will be included in the code's data, may be nullpublic static java.net.URL getVerificationURL(org.cloudfoundry.identity.uaa.codestore.ExpiringCode expiringCode)
expiringCode - the expiring code to include on the URL, may be null