001/*******************************************************************************
002 * Copyright 2017 The MIT Internet Trust Consortium
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *   http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *******************************************************************************/
016package org.mitre.oauth2.model;
017
018public interface RegisteredClientFields {
019        public String SOFTWARE_ID = "software_id";
020        public String SOFTWARE_VERSION = "software_version";
021        public String SOFTWARE_STATEMENT = "software_statement";
022        public String CLAIMS_REDIRECT_URIS = "claims_redirect_uris";
023        public String CLIENT_SECRET_EXPIRES_AT = "client_secret_expires_at";
024        public String CLIENT_ID_ISSUED_AT = "client_id_issued_at";
025        public String REGISTRATION_CLIENT_URI = "registration_client_uri";
026        public String REGISTRATION_ACCESS_TOKEN = "registration_access_token";
027        public String REQUEST_URIS = "request_uris";
028        public String POST_LOGOUT_REDIRECT_URIS = "post_logout_redirect_uris";
029        public String INITIATE_LOGIN_URI = "initiate_login_uri";
030        public String DEFAULT_ACR_VALUES = "default_acr_values";
031        public String REQUIRE_AUTH_TIME = "require_auth_time";
032        public String DEFAULT_MAX_AGE = "default_max_age";
033        public String TOKEN_ENDPOINT_AUTH_SIGNING_ALG = "token_endpoint_auth_signing_alg";
034        public String ID_TOKEN_ENCRYPTED_RESPONSE_ENC = "id_token_encrypted_response_enc";
035        public String ID_TOKEN_ENCRYPTED_RESPONSE_ALG = "id_token_encrypted_response_alg";
036        public String ID_TOKEN_SIGNED_RESPONSE_ALG = "id_token_signed_response_alg";
037        public String USERINFO_ENCRYPTED_RESPONSE_ENC = "userinfo_encrypted_response_enc";
038        public String USERINFO_ENCRYPTED_RESPONSE_ALG = "userinfo_encrypted_response_alg";
039        public String USERINFO_SIGNED_RESPONSE_ALG = "userinfo_signed_response_alg";
040        public String REQUEST_OBJECT_SIGNING_ALG = "request_object_signing_alg";
041        public String SUBJECT_TYPE = "subject_type";
042        public String SECTOR_IDENTIFIER_URI = "sector_identifier_uri";
043        public String APPLICATION_TYPE = "application_type";
044        public String JWKS_URI = "jwks_uri";
045        public String JWKS = "jwks";
046        public String SCOPE_SEPARATOR = " ";
047        public String POLICY_URI = "policy_uri";
048        public String RESPONSE_TYPES = "response_types";
049        public String GRANT_TYPES = "grant_types";
050        public String SCOPE = "scope";
051        public String TOKEN_ENDPOINT_AUTH_METHOD = "token_endpoint_auth_method";
052        public String TOS_URI = "tos_uri";
053        public String CONTACTS = "contacts";
054        public String LOGO_URI = "logo_uri";
055        public String CLIENT_URI = "client_uri";
056        public String CLIENT_NAME = "client_name";
057        public String REDIRECT_URIS = "redirect_uris";
058        public String CLIENT_SECRET = "client_secret";
059        public String CLIENT_ID = "client_id";
060        public String CODE_CHALLENGE_METHOD = "code_challenge_method";
061}