Searched defs:oldAttr (Results 1 - 25 of 32) sorted by relevance

12

/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/helpers/
H A DAuditUpgradeHelper.java45 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
H A DOAuth2AuthModuleUpgradeHelper.java37 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
41 && !oldAttr.getDefaultValues().equals(newAttr.getDefaultValues())) {
49 && newAttr.getType() != oldAttr.getType()) {
H A DPolicyConfigUpgradeHelper.java49 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
52 if (oldAttr.getI18NKey() == null || oldAttr.getI18NKey().isEmpty()) {
58 // it's not possible to simply set the i18N key so we need to copy the values of oldAttr to
60 newAttr = updateDefaultValues(newAttr, oldAttr.getDefaultValues());
H A DScriptedAuthHelper.java44 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
H A DUmaProviderUpgradeHelper.java42 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
H A DAgentServiceHelper.java48 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
53 if (AttributeSchema.UIType.UNORDEREDLIST.equals(oldAttr.getUIType())) {
56 } else if ((POLICY_CACHE_MODE.equals(newAttr.getName()) && oldAttr.getDefaultValues().contains("self"))
57 || (FETCH_FROM_ROOT.equals(newAttr.getName()) && oldAttr.getDefaultValues().contains("false"))) {
61 && newAttr.getDefaultValues().equals(oldAttr.getDefaultValues())) {
H A DIdRepoServiceHelper.java45 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
51 String oldKey = oldAttr.getI18NKey();
61 if (oldAttr.getDefaultValues().equals(newAttr.getDefaultValues())) {
H A DLoggingUpgradeHelper.java47 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
50 && !AttributeSchema.ListOrder.INSERTION.equals(oldAttr.getListOrder())) {
53 && !Arrays.asList(oldAttr.getChoiceValues()).contains(SYSLOG_LOGGING_TYPE)) {
54 newAttr = updateDefaultValues(newAttr, oldAttr.getDefaultValues());
H A DOAuth2ProviderUpgradeHelper.java52 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
56 final Set<String> oldAlgorithms = oldAttr.getDefaultValues();
62 return updateDefaultValues(oldAttr, newAlgorithms);
64 } else if (JKWS_URI.equals(newAttr.getName()) && !oldAttr.getType().equals(newAttr.getType())) {
67 final Set<String> oldClaims = oldAttr.getDefaultValues();
70 return updateDefaultValues(oldAttr, newAttr.getDefaultValues());
73 if (!oldAttr.getDefaultValues().equals(newAttr.getDefaultValues())) {
74 return updateDefaultValues(oldAttr, newAttr.getDefaultValues());
H A DRestApiUpgradeHelper.java59 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/helpers/
H A DAuditUpgradeHelper.java45 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
H A DOAuth2AuthModuleUpgradeHelper.java37 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
41 && !oldAttr.getDefaultValues().equals(newAttr.getDefaultValues())) {
49 && newAttr.getType() != oldAttr.getType()) {
H A DPolicyConfigUpgradeHelper.java49 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
52 if (oldAttr.getI18NKey() == null || oldAttr.getI18NKey().isEmpty()) {
58 // it's not possible to simply set the i18N key so we need to copy the values of oldAttr to
60 newAttr = updateDefaultValues(newAttr, oldAttr.getDefaultValues());
H A DScriptedAuthHelper.java44 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
H A DUmaProviderUpgradeHelper.java42 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
H A DAgentServiceHelper.java48 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
53 if (AttributeSchema.UIType.UNORDEREDLIST.equals(oldAttr.getUIType())) {
56 } else if ((POLICY_CACHE_MODE.equals(newAttr.getName()) && oldAttr.getDefaultValues().contains("self"))
57 || (FETCH_FROM_ROOT.equals(newAttr.getName()) && oldAttr.getDefaultValues().contains("false"))) {
61 && newAttr.getDefaultValues().equals(oldAttr.getDefaultValues())) {
64 && newAttr.getDefaultValues().equals(oldAttr.getDefaultValues())) {
H A DDashboardServiceHelper.java57 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, argument
59 if(attributesRequireUpdate.contains(newAttr.getName()) && !newAttr.getI18NKey().equals(oldAttr.getI18NKey())) {
H A DIdRepoServiceHelper.java45 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
51 String oldKey = oldAttr.getI18NKey();
61 if (oldAttr.getDefaultValues().equals(newAttr.getDefaultValues())) {
H A DLoggingUpgradeHelper.java47 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
50 && !AttributeSchema.ListOrder.INSERTION.equals(oldAttr.getListOrder())) {
53 && !Arrays.asList(oldAttr.getChoiceValues()).contains(SYSLOG_LOGGING_TYPE)) {
54 newAttr = updateDefaultValues(newAttr, oldAttr.getDefaultValues());
H A DOpenIdConnectAuthModuleServiceHelper.java38 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) throws UpgradeException { argument
39 if (!newAttr.getI18NKey().equals(oldAttr.getI18NKey())) {
H A DRestApiUpgradeHelper.java59 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
H A DSAML2ConfigHelper.java41 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
43 if (CACHE_CLEANUP_INTERVAL.equals(oldAttr.getName()) && StringUtils.isEmpty(oldAttr.getStartRange())) {
44 String currentValue = CollectionUtils.getFirstItem(oldAttr.getDefaultValues());
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/
H A DUpgradeHelper.java53 * @param oldAttr The old attribute schema
58 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/
H A DUpgradeHelper.java53 * @param oldAttr The old attribute schema
58 public AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument
/forgerock/openam-v13/openam-upgrade/src/main/java/com/sun/identity/sm/
H A DAbstractUpgradeHelper.java100 * @param oldAttr The attribute schema definition currently specified.
107 public abstract AttributeSchemaImpl upgradeAttribute(AttributeSchemaImpl oldAttr, AttributeSchemaImpl newAttr) argument

Completed in 86 milliseconds

12