diff --git a/library/java/net/openid/appauth/AuthorizationRequest.java b/library/java/net/openid/appauth/AuthorizationRequest.java index 74829294..d3485118 100644 --- a/library/java/net/openid/appauth/AuthorizationRequest.java +++ b/library/java/net/openid/appauth/AuthorizationRequest.java @@ -171,6 +171,17 @@ public static final class Prompt { * " */ public static final String SELECT_ACCOUNT = "select_account"; + + /** + * A value of create indicates to the OpenID Provider that the client desires that the user + * be shown the account creation UX rather than the login flow. Care must be taken if + * combining this value with other prompt values. Mutually exclusive conditions can + * arise so it is RECOMMENDED that create not be combined with any other values. + * + * @see "Initiating User Registration via OpenID Connect 1.0 + * " + */ + public static final String CREATE = "create"; } /**