Searched refs:existing (Results 1 - 25 of 68) sorted by relevance

123

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DEntitlementCombiner.java105 * entitlements will be combined with existing decision.
122 for (Entitlement existing : results) {
124 e.getResourceName(), existing.getResourceName(), true);
126 mergeActionValues(existing, e);
127 mergeAdvices(existing, e);
128 mergeAttributes(existing, e);
129 mergeTimeToLiveValue(existing, e);
132 mergeActionValues(existing, e);
133 mergeAdvices(existing, e);
134 mergeAttributes(existing,
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DEntitlementCombiner.java106 * entitlements will be combined with existing decision.
123 for (Entitlement existing : results) {
125 e.getResourceName(), existing.getResourceName(), true);
127 mergeActionValues(existing, e);
128 mergeAdvices(existing, e);
129 mergeAttributes(existing, e);
130 mergeTimeToLiveValue(existing, e);
133 mergeActionValues(existing, e);
134 mergeAdvices(existing, e);
135 mergeAttributes(existing,
[all...]
/forgerock/openam-v13/openam-schema/openam-diagnostics-schema/src/main/java/com/sun/identity/diagnostic/base/core/jaxbgen/impl/runtime/
H A DIdentityHashSet.java91 Object existing;
93 while ((existing=tab[index]) != null) {
94 if(existing==newObj) return false;
/forgerock/openam-v13/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/federation/jaxb/entityconfig/impl/runtime/
H A DIdentityHashSet.java91 Object existing;
93 while ((existing=tab[index]) != null) {
94 if(existing==newObj) return false;
/forgerock/openam-v13/openam-schema/openam-saml2-schema/src/main/java/com/sun/identity/saml2/jaxb/assertion/impl/runtime/
H A DIdentityHashSet.java91 Object existing;
93 while ((existing=tab[index]) != null) {
94 if(existing==newObj) return false;
/forgerock/openam-v13/openam-schema/openam-wsfederation-schema/src/main/java/com/sun/identity/wsfederation/jaxb/entityconfig/impl/runtime/
H A DIdentityHashSet.java91 Object existing;
93 while ((existing=tab[index]) != null) {
94 if(existing==newObj) return false;
/forgerock/openam/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/federation/jaxb/entityconfig/impl/runtime/
H A DIdentityHashSet.java91 Object existing;
93 while ((existing=tab[index]) != null) {
94 if(existing==newObj) return false;
/forgerock/openam/openam-schema/openam-saml2-schema/src/main/java/com/sun/identity/saml2/jaxb/assertion/impl/runtime/
H A DIdentityHashSet.java91 Object existing;
93 while ((existing=tab[index]) != null) {
94 if(existing==newObj) return false;
/forgerock/openam/openam-schema/openam-wsfederation-schema/src/main/java/com/sun/identity/wsfederation/jaxb/entityconfig/impl/runtime/
H A DIdentityHashSet.java91 Object existing;
93 while ((existing=tab[index]) != null) {
94 if(existing==newObj) return false;
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/
H A Dpolicy.js212 var queryParams,existing,requestId,requestBaseArray;
220 existing = openidm.query("repo/internal/user", queryParams);
222 if (existing.result.length !== 0 && (!requestId || (existing.result[0]._id != requestId))) {
230 var queryParams,existing,requestId,requestBaseArray;
237 existing = openidm.query(resourceName.parent().toString(), queryParams);
239 if (existing.result.length !== 0 && (!requestId || (existing.result[0]._id != requestId))) {
840 // Check if there are conditional policies in the existing resource config
850 // No existing conditiona
[all...]
/forgerock/openidm-v4/openidm-config/src/main/java/org/forgerock/openidm/config/persistence/
H A DRepoPersistenceManager.java161 ResourceResponse existing = repo.read(readRequest);
162 exists = (existing != null);
204 ResourceResponse existing = repo.read(readRequest);
205 Map<String, Object> existingConfig = existing.getContent().asMap();
209 logger.debug("Config loaded {} {}", pid, existing);
343 Map<String,Object> existing = null;
346 existing = repo.read(readRequest).getContent().asMap();
350 if (existing != null) {
351 String rev = (String) existing.get("_rev");
353 existing
[all...]
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DPhaseStatistic.java150 Integer existing = simpleSummary.get(key);
151 if (existing == null) {
152 existing = 0;
154 Integer updated = existing + e.getValue().size();
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/uma/views/share/
H A DCommonShare.js244 // Look for existing share and populate permissions if there one already exists
246 var existing = self.parentModel.get("policy").get("permissions").findWhere({ subject: value }),
250 if (existing) {
251 scopes = existing.get("scopes").pluck("name");
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/user/uma/views/share/
H A DCommonShare.js238 // Look for existing share and populate permissions if there one already exists
240 var existing = self.parentModel.get("policy").get("permissions").findWhere({ subject: value }),
244 if (existing) {
245 scopes = existing.get("scopes").pluck("name");
/forgerock/openidm-v4/openidm-config/src/main/java/org/forgerock/openidm/logging/
H A DOsgiLogHandler.java91 LogListener existing = logReaderServices.get(reader);
92 if (existing == null) {
101 // This dumps the existing log entries.
/forgerock/openam-v13/openam-entitlements/src/test/java/com/sun/identity/entitlement/xacml3/
H A DXACMLExportImportTest.java95 Privilege privilegeToUpdate = existing(valid(privilege("p1")));
123 Privilege privilegeToUpdate = existing(valid(privilege("p1")));
198 private <T extends IPrivilege> T existing(T privilege) throws EntitlementException { method in class:XACMLExportImportTest
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/mapping/
H A DMappingBaseView.js310 if (reconStatus.progress.source.existing.total !== "?" && reconStatus.stage === "ACTIVE_RECONCILING_SOURCE") {
311 processed = parseInt(reconStatus.progress.source.existing.processed, 10);
312 total = parseInt(reconStatus.progress.source.existing.total, 10);
313 } else if(reconStatus.progress.target.existing.total !== "?" && reconStatus.stage === "ACTIVE_RECONCILING_TARGET") {
314 total = parseInt(reconStatus.progress.target.existing.total, 10);
315 processed = parseInt(reconStatus.progress.target.existing.processed, 10);
/forgerock/openam/openam-entitlements/src/test/java/com/sun/identity/entitlement/xacml3/
H A DXACMLExportImportTest.java124 Privilege privilegeToUpdate = existing(valid(privilege("p1")));
152 Privilege privilegeToUpdate = existing(valid(privilege("p1")));
212 private <T extends IPrivilege> T existing(T privilege) throws EntitlementException { method in class:XACMLExportImportTest
/forgerock/opendj2/ext/ant/
H A DLICENSE221 2. Any pre-existing intellectual property disclaimers, notices, or terms
/forgerock/opendj-b2.6/ext/ant/
H A DLICENSE221 2. Any pre-existing intellectual property disclaimers, notices, or terms
/forgerock/opendj2.6.2/ext/ant/
H A DLICENSE221 2. Any pre-existing intellectual property disclaimers, notices, or terms
/forgerock/opendj2-hg/ext/ant/
H A DLICENSE221 2. Any pre-existing intellectual property disclaimers, notices, or terms
/forgerock/opendj-v3/opendj-server-legacy/ext/ant/
H A DLICENSE221 2. Any pre-existing intellectual property disclaimers, notices, or terms
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/impl/
H A DGenericTableHandler.java545 logger.debug("Update existing object {} rev: {} db id: {}, object type db id: {}", fullId, existingRev, dbId, objectTypeDbId);
558 newLocalId = localId; // If it hasn't changed, use the existing ID
605 ResultSet existing = null;
609 existing = readForUpdate(fullId, type, localId, connection);
613 String existingRev = existing.getString("rev");
637 if (existing != null) {
639 Statement existingStatement = existing.getStatement();
640 CleanupHelper.loggedClose(existing);
H A DMappedTableHandler.java385 logger.debug("Update existing object {} rev: {} ", fullId, existingRev);
399 newLocalId = localId; // If it hasn't changed, use the existing
442 ResultSet existing = null;
446 existing = readForUpdate(fullId, type, localId, connection);
450 String existingRev = explicitMapping.getRev(existing);
474 if (existing != null) {
476 Statement existingStatement = existing.getStatement();
477 CleanupHelper.loggedClose(existing);

Completed in 40 milliseconds

123