Searched refs:oldValues (Results 1 - 25 of 48) sorted by relevance

12

/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/schema/
H A DAddAttributeDefaults.java96 Set oldValues = (Set)mapOldValues.get(attributeName);
98 ((oldValues == null) || oldValues.isEmpty()) ?
99 new HashSet() : new HashSet(oldValues);
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/schema/
H A DAddAttributeDefaults.java96 Set oldValues = (Set)mapOldValues.get(attributeName);
98 ((oldValues == null) || oldValues.isEmpty()) ?
99 new HashSet() : new HashSet(oldValues);
/forgerock/openam-v13/openam-console/src/test/java/com/sun/identity/console/base/
H A DAMPropertySheetTest.java65 Map<String, Set<String>> oldValues = Collections.singletonMap(key, Collections.singleton(oldValue));
72 Map<String, Set<String>> result = propertySheet.getAttributeValues(oldValues, true, amModel);
/forgerock/openam/openam-console/src/test/java/com/sun/identity/console/base/
H A DAMPropertySheetTest.java65 Map<String, Set<String>> oldValues = Collections.singletonMap(key, Collections.singleton(oldValue));
72 Map<String, Set<String>> result = propertySheet.getAttributeValues(oldValues, true, amModel);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/task/
H A DModifyEntryTask.java504 List<Object> oldValues = oldEntry.getAttributeValues(attrName);
559 if (oldValues == null)
573 List<ByteString> toDelete = getValuesToDelete(oldValues, newValues);
578 List<ByteString> toAdd = getValuesToAdd(oldValues, newValues);
623 List<Object> oldValues = oldEntry.getAttributeValues(attrName);
628 if (!find(attrs, attrName) && !oldValues.isEmpty())
688 * @param oldValues the old values of the entry.
692 private static List<ByteString> getValuesToDelete(List<Object> oldValues, argument
696 for (Object o : oldValues)
709 * @param oldValues th
713 getValuesToAdd(List<Object> oldValues, List<ByteString> newValues) argument
727 contains(List<Object> oldValues, ByteString newValue) argument
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/task/
H A DModifyEntryTask.java521 List<Object> oldValues = oldEntry.getAttributeValues(attrName);
586 if (oldValues == null)
601 List<AttributeValue> toDelete = getValuesToDelete(oldValues, newValues,
607 List<AttributeValue> toAdd = getValuesToAdd(oldValues, newValues,
654 List<Object> oldValues = oldEntry.getAttributeValues(attrName);
672 if (!found && (oldValues.size() > 0))
726 * @param oldValues the old values of the entry.
731 private static List<AttributeValue> getValuesToDelete(List<Object> oldValues, argument
735 for (Object o : oldValues)
748 * @param oldValues th
753 getValuesToAdd(List<Object> oldValues, List<AttributeValue> newValues, AttributeType attrType) argument
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/task/
H A DModifyEntryTask.java520 List<Object> oldValues = oldEntry.getAttributeValues(attrName);
585 if (oldValues == null)
600 List<AttributeValue> toDelete = getValuesToDelete(oldValues, newValues,
606 List<AttributeValue> toAdd = getValuesToAdd(oldValues, newValues,
653 List<Object> oldValues = oldEntry.getAttributeValues(attrName);
671 if (!found && (oldValues.size() > 0))
725 * @param oldValues the old values of the entry.
730 private static List<AttributeValue> getValuesToDelete(List<Object> oldValues, argument
734 for (Object o : oldValues)
747 * @param oldValues th
752 getValuesToAdd(List<Object> oldValues, List<AttributeValue> newValues, AttributeType attrType) argument
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/task/
H A DModifyEntryTask.java521 List<Object> oldValues = oldEntry.getAttributeValues(attrName);
586 if (oldValues == null)
601 List<AttributeValue> toDelete = getValuesToDelete(oldValues, newValues,
607 List<AttributeValue> toAdd = getValuesToAdd(oldValues, newValues,
654 List<Object> oldValues = oldEntry.getAttributeValues(attrName);
672 if (!found && (oldValues.size() > 0))
726 * @param oldValues the old values of the entry.
731 private static List<AttributeValue> getValuesToDelete(List<Object> oldValues, argument
735 for (Object o : oldValues)
748 * @param oldValues th
753 getValuesToAdd(List<Object> oldValues, List<AttributeValue> newValues, AttributeType attrType) argument
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/task/
H A DModifyEntryTask.java520 List<Object> oldValues = oldEntry.getAttributeValues(attrName);
585 if (oldValues == null)
600 List<AttributeValue> toDelete = getValuesToDelete(oldValues, newValues,
606 List<AttributeValue> toAdd = getValuesToAdd(oldValues, newValues,
653 List<Object> oldValues = oldEntry.getAttributeValues(attrName);
671 if (!found && (oldValues.size() > 0))
725 * @param oldValues the old values of the entry.
730 private static List<AttributeValue> getValuesToDelete(List<Object> oldValues, argument
734 for (Object o : oldValues)
747 * @param oldValues th
752 getValuesToAdd(List<Object> oldValues, List<AttributeValue> newValues, AttributeType attrType) argument
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/task/
H A DModifyEntryTask.java521 List<Object> oldValues = oldEntry.getAttributeValues(attrName);
586 if (oldValues == null)
601 List<AttributeValue> toDelete = getValuesToDelete(oldValues, newValues,
607 List<AttributeValue> toAdd = getValuesToAdd(oldValues, newValues,
654 List<Object> oldValues = oldEntry.getAttributeValues(attrName);
672 if (!found && (oldValues.size() > 0))
726 * @param oldValues the old values of the entry.
731 private static List<AttributeValue> getValuesToDelete(List<Object> oldValues, argument
735 for (Object o : oldValues)
748 * @param oldValues th
753 getValuesToAdd(List<Object> oldValues, List<AttributeValue> newValues, AttributeType attrType) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DServiceInstance.java292 * @param oldValues
301 public void replaceAttributeValues(String attrName, Set oldValues, argument
305 SMSUtils.replaceAttributeValues(e, attrName, oldValues, newValues,
H A DPluginConfig.java277 * @param oldValues
283 public void replaceAttributeValues(String attrName, Set oldValues, argument
293 newVals.removeAll(oldValues);
301 SMSUtils.replaceAttributeValues(e, attrName, oldValues, newValues, ps
H A DServiceConfig.java697 * @param oldValues
706 public void replaceAttributeValues(String attrName, Set oldValues, argument
716 newVals.removeAll(oldValues);
723 SMSUtils.replaceAttributeValues(e, attrName, oldValues, newValues, ss
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DServiceInstance.java292 * @param oldValues
301 public void replaceAttributeValues(String attrName, Set oldValues, argument
305 SMSUtils.replaceAttributeValues(e, attrName, oldValues, newValues,
H A DPluginConfig.java277 * @param oldValues
283 public void replaceAttributeValues(String attrName, Set oldValues, argument
293 newVals.removeAll(oldValues);
301 SMSUtils.replaceAttributeValues(e, attrName, oldValues, newValues, ps
/forgerock/opendj-b2.6/src/server/org/opends/server/tools/dsconfig/
H A DPropertyValueEditor.java529 SortedSet<String> oldValues =
534 oldValues);
578 SortedSet<Boolean> oldValues = new TreeSet<Boolean>(
583 oldValues);
637 SortedSet<E> oldValues = new TreeSet<E>(mo.getPropertyValues(d));
640 registerModification(d, new TreeSet<E>(newValues), oldValues);
664 SortedSet<T> oldValues = new TreeSet<T>(mo.getPropertyValues(d));
667 registerModification(d, values, oldValues);
733 final SortedSet<String> oldValues = mo.getPropertyValues(d);
885 MenuResult<Boolean> result = runMenu(d, app, defaultValues, oldValues,
1150 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> oldValues, SortedSet<T> currentValues) argument
1296 runMenu(final PropertyDefinition<T> d, ConsoleApplication app, final SortedSet<T> defaultValues, final SortedSet<T> oldValues, final SortedSet<T> currentValues, MenuCallback<Boolean> addCallback, MenuCallback<Boolean> removeCallback) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/tools/dsconfig/
H A DPropertyValueEditor.java527 SortedSet<String> oldValues =
532 oldValues);
576 SortedSet<Boolean> oldValues = new TreeSet<Boolean>(
581 oldValues);
635 SortedSet<E> oldValues = new TreeSet<E>(mo.getPropertyValues(d));
638 registerModification(d, new TreeSet<E>(newValues), oldValues);
662 SortedSet<T> oldValues = new TreeSet<T>(mo.getPropertyValues(d));
665 registerModification(d, values, oldValues);
731 final SortedSet<String> oldValues = mo.getPropertyValues(d);
883 MenuResult<Boolean> result = runMenu(d, app, defaultValues, oldValues,
1148 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> oldValues, SortedSet<T> currentValues) argument
1294 runMenu(final PropertyDefinition<T> d, ConsoleApplication app, final SortedSet<T> defaultValues, final SortedSet<T> oldValues, final SortedSet<T> currentValues, MenuCallback<Boolean> addCallback, MenuCallback<Boolean> removeCallback) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/dsconfig/
H A DPropertyValueEditor.java529 SortedSet<String> oldValues =
534 oldValues);
578 SortedSet<Boolean> oldValues = new TreeSet<Boolean>(
583 oldValues);
637 SortedSet<E> oldValues = new TreeSet<E>(mo.getPropertyValues(d));
640 registerModification(d, new TreeSet<E>(newValues), oldValues);
664 SortedSet<T> oldValues = new TreeSet<T>(mo.getPropertyValues(d));
667 registerModification(d, values, oldValues);
733 final SortedSet<String> oldValues = mo.getPropertyValues(d);
885 MenuResult<Boolean> result = runMenu(d, app, defaultValues, oldValues,
1150 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> oldValues, SortedSet<T> currentValues) argument
1296 runMenu(final PropertyDefinition<T> d, ConsoleApplication app, final SortedSet<T> defaultValues, final SortedSet<T> oldValues, final SortedSet<T> currentValues, MenuCallback<Boolean> addCallback, MenuCallback<Boolean> removeCallback) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/tools/dsconfig/
H A DPropertyValueEditor.java529 SortedSet<String> oldValues =
534 oldValues);
578 SortedSet<Boolean> oldValues = new TreeSet<Boolean>(
583 oldValues);
637 SortedSet<E> oldValues = new TreeSet<E>(mo.getPropertyValues(d));
640 registerModification(d, new TreeSet<E>(newValues), oldValues);
664 SortedSet<T> oldValues = new TreeSet<T>(mo.getPropertyValues(d));
667 registerModification(d, values, oldValues);
733 final SortedSet<String> oldValues = mo.getPropertyValues(d);
885 MenuResult<Boolean> result = runMenu(d, app, defaultValues, oldValues,
1150 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> oldValues, SortedSet<T> currentValues) argument
1296 runMenu(final PropertyDefinition<T> d, ConsoleApplication app, final SortedSet<T> defaultValues, final SortedSet<T> oldValues, final SortedSet<T> currentValues, MenuCallback<Boolean> addCallback, MenuCallback<Boolean> removeCallback) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/tools/dsconfig/
H A DPropertyValueEditor.java527 SortedSet<String> oldValues =
532 oldValues);
576 SortedSet<Boolean> oldValues = new TreeSet<Boolean>(
581 oldValues);
635 SortedSet<E> oldValues = new TreeSet<E>(mo.getPropertyValues(d));
638 registerModification(d, new TreeSet<E>(newValues), oldValues);
662 SortedSet<T> oldValues = new TreeSet<T>(mo.getPropertyValues(d));
665 registerModification(d, values, oldValues);
731 final SortedSet<String> oldValues = mo.getPropertyValues(d);
883 MenuResult<Boolean> result = runMenu(d, app, defaultValues, oldValues,
1148 getKeepDefaultValuesMenuOption( PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> oldValues, SortedSet<T> currentValues) argument
1294 runMenu(final PropertyDefinition<T> d, ConsoleApplication app, final SortedSet<T> defaultValues, final SortedSet<T> oldValues, final SortedSet<T> currentValues, MenuCallback<Boolean> addCallback, MenuCallback<Boolean> removeCallback) argument
[all...]
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/dsconfig/
H A DPropertyValueEditor.java432 SortedSet<String> oldValues = new TreeSet<>(mo.getPropertyValues(d));
435 registerModification(d, new TreeSet<String>(newValues), oldValues);
471 SortedSet<Boolean> oldValues = new TreeSet<>(mo.getPropertyValues(d));
474 registerModification(d, new TreeSet<Boolean>(newValues), oldValues);
520 SortedSet<E> oldValues = new TreeSet<>(mo.getPropertyValues(d));
523 registerModification(d, new TreeSet<E>(newValues), oldValues);
541 SortedSet<T> oldValues = new TreeSet<>(mo.getPropertyValues(d));
544 registerModification(d, values, oldValues);
594 final SortedSet<String> oldValues = mo.getPropertyValues(d);
737 MenuResult<Boolean> result = runMenu(d, app, defaultValues, oldValues, currentValue
980 getKeepDefaultValuesMenuOption(PropertyDefinition<T> pd, SortedSet<T> defaultValues, SortedSet<T> oldValues, SortedSet<T> currentValues) argument
1109 runMenu(final PropertyDefinition<T> d, ConsoleApplication app, final SortedSet<T> defaultValues, final SortedSet<T> oldValues, final SortedSet<T> currentValues, MenuCallback<Boolean> addCallback, MenuCallback<Boolean> removeCallback) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyDecision.java214 Set oldValues = oldDecision.getValues();
215 if ( (oldValues == Collections.EMPTY_SET)
216 || ( oldValues == null) ) {
219 oldValues.addAll(actionDecision.getValues());
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyDecision.java214 Set oldValues = oldDecision.getValues();
215 if ( (oldValues == Collections.EMPTY_SET)
216 || ( oldValues == null) ) {
219 oldValues.addAll(actionDecision.getValues());
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/xml/
H A DXMLUtils.java361 Set<String> oldValues = resultMap.get(key);
362 if (oldValues != null) {
363 values.addAll(oldValues);
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/xml/
H A DXMLUtils.java359 Set<String> oldValues = resultMap.get(key);
360 if (oldValues != null) {
361 values.addAll(oldValues);

Completed in 112 milliseconds

12