|
|
@ -22,6 +22,7 @@ |
|
|
|
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
|
|
|
|
|
|
|
# OPENID URLS |
|
|
|
URL_REALM = "realms/{realm-name}" |
|
|
|
URL_WELL_KNOWN = "realms/{realm-name}/.well-known/openid-configuration" |
|
|
|
URL_TOKEN = "realms/{realm-name}/protocol/openid-connect/token" |
|
|
|
URL_USERINFO = "realms/{realm-name}/protocol/openid-connect/userinfo" |
|
|
@ -42,6 +43,9 @@ URL_ADMIN_RESET_PASSWORD = "admin/realms/{realm-name}/users/{id}/reset-password" |
|
|
|
URL_ADMIN_GET_SESSIONS = "admin/realms/{realm-name}/users/{id}/sessions" |
|
|
|
URL_ADMIN_USER_CLIENT_ROLES = "admin/realms/{realm-name}/users/{id}/role-mappings/clients/{client-id}" |
|
|
|
URL_ADMIN_USER_REALM_ROLES = "admin/realms/{realm-name}/users/{id}/role-mappings/realm" |
|
|
|
URL_ADMIN_GROUPS_REALM_ROLES = "admin/realms/{realm-name}/groups/{id}/role-mappings/realm" |
|
|
|
URL_ADMIN_GET_GROUPS_REALM_ROLES = "admin/realms/{realm-name}/groups/{id}/role-mappings" |
|
|
|
URL_ADMIN_GROUPS_CLIENT_ROLES = "admin/realms/{realm-name}/groups/{id}/role-mappings/clients/{client-id}" |
|
|
|
URL_ADMIN_USER_CLIENT_ROLES_AVAILABLE = "admin/realms/{realm-name}/users/{id}/role-mappings/clients/{client-id}/available" |
|
|
|
URL_ADMIN_USER_CLIENT_ROLES_COMPOSITE = "admin/realms/{realm-name}/users/{id}/role-mappings/clients/{client-id}/composite" |
|
|
|
URL_ADMIN_USER_GROUP = "admin/realms/{realm-name}/users/{id}/groups/{group-id}" |
|
|
@ -62,17 +66,39 @@ URL_ADMIN_CLIENT = URL_ADMIN_CLIENTS + "/{id}" |
|
|
|
URL_ADMIN_CLIENT_SECRETS= URL_ADMIN_CLIENT + "/client-secret" |
|
|
|
URL_ADMIN_CLIENT_ROLES = URL_ADMIN_CLIENT + "/roles" |
|
|
|
URL_ADMIN_CLIENT_ROLE = URL_ADMIN_CLIENT + "/roles/{role-name}" |
|
|
|
URL_ADMIN_CLIENT_ROLE_MEMBERS = URL_ADMIN_CLIENT + "/roles/{role-name}/users" |
|
|
|
URL_ADMIN_CLIENT_AUTHZ_SETTINGS = URL_ADMIN_CLIENT + "/authz/resource-server/settings" |
|
|
|
URL_ADMIN_CLIENT_AUTHZ_RESOURCES = URL_ADMIN_CLIENT + "/authz/resource-server/resource" |
|
|
|
URL_ADMIN_CLIENT_SERVICE_ACCOUNT_USER = URL_ADMIN_CLIENT + "/service-account-user" |
|
|
|
URL_ADMIN_CLIENT_CERTS = URL_ADMIN_CLIENT + "/certificates/{attr}" |
|
|
|
URL_ADMIN_CLIENT_INSTALLATION_PROVIDER = URL_ADMIN_CLIENT + "/installation/providers/{provider-id}" |
|
|
|
URL_ADMIN_CLIENT_PROTOCOL_MAPPER = URL_ADMIN_CLIENT + "/protocol-mappers/models" |
|
|
|
|
|
|
|
URL_ADMIN_CLIENT_SCOPES = "admin/realms/{realm-name}/client-scopes" |
|
|
|
URL_ADMIN_CLIENT_SCOPE = URL_ADMIN_CLIENT_SCOPES + "/{scope-id}" |
|
|
|
URL_ADMIN_CLIENT_SCOPES_ADD_MAPPER = URL_ADMIN_CLIENT_SCOPE + "/protocol-mappers/models" |
|
|
|
URL_ADMIN_CLIENT_SCOPES_MAPPERS = URL_ADMIN_CLIENT_SCOPES_ADD_MAPPER + "/{protocol-mapper-id}" |
|
|
|
|
|
|
|
URL_ADMIN_REALM_ROLES = "admin/realms/{realm-name}/roles" |
|
|
|
URL_ADMIN_REALM_ROLES_MEMBERS = URL_ADMIN_REALM_ROLES + "/{role-name}/users" |
|
|
|
URL_ADMIN_REALMS = "admin/realms" |
|
|
|
URL_ADMIN_REALM = "admin/realms/{realm-name}" |
|
|
|
URL_ADMIN_IDPS = "admin/realms/{realm-name}/identity-provider/instances" |
|
|
|
URL_ADMIN_IDP_MAPPERS = "admin/realms/{realm-name}/identity-provider/instances/{idp-alias}/mappers" |
|
|
|
URL_ADMIN_IDP = "admin/realms//{realm-name}/identity-provider/instances/{alias}" |
|
|
|
URL_ADMIN_REALM_ROLES_ROLE_BY_NAME = "admin/realms/{realm-name}/roles/{role-name}" |
|
|
|
URL_ADMIN_REALM_ROLES_COMPOSITE_REALM_ROLE = "admin/realms/{realm-name}/roles/{role-name}/composites" |
|
|
|
|
|
|
|
URL_ADMIN_FLOWS = "admin/realms/{realm-name}/authentication/flows" |
|
|
|
URL_ADMIN_FLOWS_ALIAS = "admin/realms/{realm-name}/authentication/flows/{flow-id}" |
|
|
|
URL_ADMIN_FLOWS_COPY = "admin/realms/{realm-name}/authentication/flows/{flow-alias}/copy" |
|
|
|
URL_ADMIN_FLOWS_EXECUTIONS = "admin/realms/{realm-name}/authentication/flows/{flow-alias}/executions" |
|
|
|
URL_ADMIN_FLOWS_EXECUTIONS_EXEUCUTION = "admin/realms/{realm-name}/authentication/flows/{flow-alias}/executions/execution" |
|
|
|
URL_ADMIN_FLOWS_EXECUTIONS_FLOW = "admin/realms/{realm-name}/authentication/flows/{flow-alias}/executions/flow" |
|
|
|
|
|
|
|
URL_ADMIN_COMPONENTS = "admin/realms/{realm-name}/components" |
|
|
|
URL_ADMIN_COMPONENT = "admin/realms/{realm-name}/components/{component-id}" |
|
|
|
URL_ADMIN_KEYS = "admin/realms/{realm-name}/keys" |
|
|
|
|
|
|
|
URL_ADMIN_USER_FEDERATED_IDENTITIES = "admin/realms/{realm-name}/users/{id}/federated-identity" |
|
|
|
URL_ADMIN_USER_FEDERATED_IDENTITY = "admin/realms/{realm-name}/users/{id}/federated-identity/{provider}" |