forked from p2-inc/keycloak-orgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOrgs.java
More file actions
19 lines (17 loc) · 1.08 KB
/
Orgs.java
File metadata and controls
19 lines (17 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package io.phasetwo.service;
public class Orgs {
public static final String ORG_OWNER_CONFIG_KEY = "home.idp.discovery.org";
public static final String FIELD_ORG_ID = "org_id";
public static final String ORG_AUTH_FLOW_ALIAS = "post org broker login";
public static final String ORG_DEFAULT_POST_BROKER_FLOW_KEY =
"_providerConfig.orgs.defaults.postBrokerFlow";
public static final String ORG_DEFAULT_SYNC_MODE_KEY = "_providerConfig.orgs.defaults.syncMode";
public static final String ACTIVE_ORGANIZATION = "org.ro.active";
public static final String KC_ORGS_SKIP_MIGRATION = System.getenv("KC_ORGS_SKIP_MIGRATION");
public static final String ORG_BROWSER_AUTH_FLOW_ALIAS = "Org Browser Flow";
public static final String ORG_DIRECT_GRANT_AUTH_FLOW_ALIAS = "Org Direct Grant Flow";
public static final String ORG_CONFIG_CREATE_ADMIN_USER_KEY =
"_providerConfig.orgs.config.createAdminUser";
public static final String ORG_CONFIG_SHARED_IDPS_KEY = "_providerConfig.orgs.config.sharedIdps";
public static final String ORG_SHARED_IDP_KEY = "home.idp.discovery.shared";
}