2016-02-03 10:20:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Red Hat, Inc. and/or its affiliates
|
|
|
|
* and other contributors as indicated by the @author tags.
|
|
|
|
*
|
|
|
|
* Licensed 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
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2014-08-27 10:41:40 +00:00
|
|
|
package org.keycloak.events;
|
2014-03-25 10:36:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author <a href="mailto:sthorger@redhat.com">Stian Thorgersen</a>
|
|
|
|
*/
|
|
|
|
public interface Details {
|
2015-08-11 17:04:40 +00:00
|
|
|
String CUSTOM_REQUIRED_ACTION="custom_required_action";
|
2014-03-25 10:36:15 +00:00
|
|
|
String EMAIL = "email";
|
|
|
|
String PREVIOUS_EMAIL = "previous_email";
|
|
|
|
String UPDATED_EMAIL = "updated_email";
|
|
|
|
String CODE_ID = "code_id";
|
|
|
|
String REDIRECT_URI = "redirect_uri";
|
|
|
|
String RESPONSE_TYPE = "response_type";
|
2015-11-24 13:26:41 +00:00
|
|
|
String RESPONSE_MODE = "response_mode";
|
2015-11-30 11:40:04 +00:00
|
|
|
String GRANT_TYPE = "grant_type";
|
2015-06-03 14:55:03 +00:00
|
|
|
String AUTH_TYPE = "auth_type";
|
2014-03-25 10:36:15 +00:00
|
|
|
String AUTH_METHOD = "auth_method";
|
2015-02-13 03:27:11 +00:00
|
|
|
String IDENTITY_PROVIDER = "identity_provider";
|
2015-03-30 12:05:58 +00:00
|
|
|
String IDENTITY_PROVIDER_USERNAME = "identity_provider_identity";
|
2014-03-25 10:36:15 +00:00
|
|
|
String REGISTER_METHOD = "register_method";
|
|
|
|
String USERNAME = "username";
|
|
|
|
String REMEMBER_ME = "remember_me";
|
|
|
|
String TOKEN_ID = "token_id";
|
|
|
|
String REFRESH_TOKEN_ID = "refresh_token_id";
|
2015-09-16 20:57:07 +00:00
|
|
|
String REFRESH_TOKEN_TYPE = "refresh_token_type";
|
2014-08-01 17:18:32 +00:00
|
|
|
String VALIDATE_ACCESS_TOKEN = "validate_access_token";
|
2014-03-25 10:36:15 +00:00
|
|
|
String UPDATED_REFRESH_TOKEN_ID = "updated_refresh_token_id";
|
2014-10-21 11:08:02 +00:00
|
|
|
String NODE_HOST = "node_host";
|
2015-03-11 23:27:01 +00:00
|
|
|
String REASON = "reason";
|
2015-04-14 07:58:11 +00:00
|
|
|
String REVOKED_CLIENT = "revoked_client";
|
2015-06-02 13:01:47 +00:00
|
|
|
String CLIENT_SESSION_STATE = "client_session_state";
|
|
|
|
String CLIENT_SESSION_HOST = "client_session_host";
|
2015-07-25 16:13:41 +00:00
|
|
|
String RESTART_AFTER_TIMEOUT = "restart_after_timeout";
|
2015-03-30 12:05:58 +00:00
|
|
|
|
2015-06-09 18:37:01 +00:00
|
|
|
String CONSENT = "consent";
|
|
|
|
String CONSENT_VALUE_NO_CONSENT_REQUIRED = "no_consent_required"; // No consent is required by client
|
|
|
|
String CONSENT_VALUE_CONSENT_GRANTED = "consent_granted"; // Consent granted by user
|
|
|
|
String CONSENT_VALUE_PERSISTED_CONSENT = "persistent_consent"; // Persistent consent used (was already granted by user before)
|
2015-07-12 14:12:19 +00:00
|
|
|
String IMPERSONATOR_REALM = "impersonator_realm";
|
|
|
|
String IMPERSONATOR = "impersonator";
|
2015-06-09 18:37:01 +00:00
|
|
|
|
2015-07-18 20:28:38 +00:00
|
|
|
String CLIENT_AUTH_METHOD = "client_auth_method";
|
|
|
|
|
2016-08-30 18:20:44 +00:00
|
|
|
String SIGNATURE_REQUIRED = "signature_required";
|
|
|
|
String SIGNATURE_ALGORITHM = "signature_algorithm";
|
|
|
|
|
2014-03-25 10:36:15 +00:00
|
|
|
}
|