Searched refs:all (Results 1 - 25 of 216) sorted by relevance

123456789

/forgerock/opendj-b2.6/resource/bin/
H A DREADME_WINDOWS.txt27 Note that all the batch files under the 'bin' directory have been moved to the
/forgerock/opendj2.6.2/resource/bin/
H A DREADME_WINDOWS.txt27 Note that all the batch files under the 'bin' directory have been moved to the
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/services/realm/
H A DDashboardService.js29 all: (realm) => obj.serviceCall({
H A DAuthenticationService.js44 all (realm) {
45 return Promise.all([
87 return Promise.all([
146 all (realm) {
196 all (realm) {
205 return obj.authentication.modules.types.all(realm).then(function (data) {
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/util/
H A DPromise.js26 * Returns a promise that resolves when all of the promises in the iterable argument have resolved, or rejects
29 * @returns {Promise} A promise that represents all of the specified promises
30 * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/all
32 all: function (promises) {
H A DNavigationHelper.js41 SMSGlobalDelegate.realms.all().done(function (data) {
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/uma/views/resource/
H A DStarredPage.js27 UMADelegate.labels.all().done(function (data) {
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/util/
H A DPromise.js25 * Returns a promise that resolves when all of the promises in the iterable argument have resolved, or rejects
28 * @returns {Promise} A promise that represents all of the specified promises
29 * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/all
31 all (promises) {
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/user/uma/views/resource/
H A DStarredPage.js27 UMAService.labels.all().done(function (data) {
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/settings/update/
H A DInstallationPreviewView.js46 "click .show-all-files": "showAllTreegrid",
60 "all": false,
79 // beings, otherwise the spinner may not show at all.
85 this.data = _.extend(this.data, _.pick(this.model, ["modifiedFilesExist", "all", "treeGrid"]));
89 if (this.data.all && _.has(this.model, "allTreeGrid")) {
92 } else if (!this.data.all && _.has(this.model, "modifiedTreeGrid")) {
96 this.data.treeGrid = TreeGridUtils.filepathToTreegrid("filePath", this.formatFiles(this.data.all), ["filePath", "fileState"]);
98 if (this.data.all) {
131 this.data.all = false;
142 this.data.all
[all...]
/forgerock/opendj2-jel-hg/resource/bin/
H A DREADME_WINDOWS.txt27 Note that all the batch files under the 'bin' directory have been moved to the
/forgerock/openam-v13/openam-entitlements/src/main/java/com/sun/identity/entitlement/xacml3/validation/
H A DRealmValidator.java46 Collection<String> all = getAllRealmNames();
48 if (!all.contains(realm)) {
55 * Fetch all known Realm names.
/forgerock/openam/openam-entitlements/src/main/java/com/sun/identity/entitlement/xacml3/validation/
H A DRealmValidator.java46 Collection<String> all = getAllRealmNames();
48 if (!all.contains(realm)) {
55 * Fetch all known Realm names.
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authentication/
H A DModulesView.js39 return Promise.all(arrayify(moduleInfos).map(function (moduleInfo) {
62 SMSRealmDelegate.authentication.modules.types.all(this.data.realmPath).then(function (data) {
148 chainsPromise = SMSRealmDelegate.authentication.chains.all(this.data.realmPath);
149 modulesPromise = SMSRealmDelegate.authentication.modules.all(this.data.realmPath);
151 Promise.all([chainsPromise, modulesPromise]).then(function (values) {
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/ui/
H A DcorrelateTreeToQueryFilter.js134 } else if (typeof node.all === "object") {
135 return getResults(node.all).join(" AND ");
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/services/global/
H A DAuthenticationService.js50 return Promise.all([serviceCall("schema"), serviceCall("template")]).then((response) => ({
69 return Promise.all([getSchema(), getValues()]).then((response) => ({
H A DRealmsService.js54 * Gets all realms.
57 all () {
93 return Promise.all([
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/components/
H A DTabComponent.js28 throw new TypeError(`[TabComponent] Expected all items within 'tabs' to have a '${attribute}' attribute.`);
31 throw new TypeError(`[TabComponent] Expected all items within 'tabs' to have String '${attribute}'s.`);
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/test/js/org/forgerock/openam/ui/common/util/
H A DPromiseTest.js24 describe("#all", function () {
28 Promise.all(value).then(function () {
46 return Promise.all([]).then(function (value) {
55 p = Promise.all([d.promise()]);
93 p = Promise.all([d1.promise(), d2.promise()]);
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authentication/
H A DModulesView.js38 return Promise.all(arrayify(moduleInfos).map(function (moduleInfo) {
133 chainsPromise = AuthenticationService.authentication.chains.all(this.data.realmPath);
134 modulesPromise = AuthenticationService.authentication.modules.all(this.data.realmPath);
136 Promise.all([chainsPromise, modulesPromise]).then(function (values) {
/forgerock/openam/openam-ui/openam-ui-ria/src/test/js/org/forgerock/openam/ui/common/util/
H A DPromiseTest.js24 describe("#all", () => {
28 Promise.all(value).then(() => {
45 it("resolves with empty array", () => Promise.all([]).then((value) => {
57 p = Promise.all([d.promise()]);
100 p = Promise.all([d1.promise(), d2.promise()]);
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/delegates/
H A DSMSRealmDelegate.js69 all: function (realm) {
168 all: function (realm) {
219 all: function (realm) {
227 return obj.authentication.modules.types.all(realm).then(function (data) {
246 all: function (realm) {
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/historicalaccountlinking/
H A DREADME.md21 such as OpenDJ. OpenIDM is the source of records and drives all changes to downstream systems. Managed users in OpenIDM
22 maintain a list of all the accounts that have been linked to, on the local LDAP server. This list is stored in the
23 "historicalAccounts" field of the managed user entry, and contains all past and current linked accounts. Each account
71 After you import the data, ou=People,dc=example,dc=com contains two user entries. Although all attributes to synchronize
119 3. Request all identifiers in OpenDJ to verify that joe.smith0 was created by the implicit sync from OpenIDM to OpenDJ.
124 "https://localhost:8443/openidm/system/ldap/account?_queryId=query-all-ids&_prettyPrint=true"
142 4. Request all "historicalAccounts" of the newly created managed user. See the relationship that was just created
148 "https://localhost:8443/openidm/managed/user/joesmith/historicalAccounts?_queryId=query-all"
182 7. Wait a few seconds for liveSync to pick up the change then request all "historicalAccounts" of the managed user.
188 "https://localhost:8443/openidm/managed/user/joesmith/historicalAccounts?_queryId=query-all"
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/common/
H A DDiscoUtils.java153 private static String ALL = "all";
172 BitSet all = new BitSet(SIZE);
175 all.set(SESSION);
189 setMap(descIDRefs, AUTHN, descIDDirectiveMap, all);
193 setMap(descIDRefs, AUTHO, descIDDirectiveMap, all);
197 setMap(descIDRefs, SESSION, descIDDirectiveMap, all);
201 setMap(descIDRefs, BEARER, descIDDirectiveMap, all);
217 dirs.or(all);
249 String allCred = (String) descIDCredIDMap.get("all");
251 if (directiveCredIDMap.containsKey(all)) {
297 setMap(List descIDRefs, int type, Map descIDDirectiveMap, BitSet all) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/common/
H A DDiscoUtils.java153 private static String ALL = "all";
172 BitSet all = new BitSet(SIZE);
175 all.set(SESSION);
189 setMap(descIDRefs, AUTHN, descIDDirectiveMap, all);
193 setMap(descIDRefs, AUTHO, descIDDirectiveMap, all);
197 setMap(descIDRefs, SESSION, descIDDirectiveMap, all);
201 setMap(descIDRefs, BEARER, descIDDirectiveMap, all);
217 dirs.or(all);
249 String allCred = (String) descIDCredIDMap.get("all");
251 if (directiveCredIDMap.containsKey(all)) {
297 setMap(List descIDRefs, int type, Map descIDDirectiveMap, BitSet all) argument
[all...]

Completed in 115 milliseconds

123456789