001
014
015 package com.liferay.portal.upgrade.v5_2_3.util;
016
017
020 public class CountryDependencyManager extends DependencyManager {
021
022 public void update(
023 long oldPrimaryKeyValue, Object[] oldColumnValues,
024 Object[] oldExtraColumnValues, long newPrimaryKeyValue,
025 Object[] newColumnValues, Object[] newExtraColumnValues)
026 throws Exception {
027
028 updateDuplicateData("Address", oldPrimaryKeyValue, newPrimaryKeyValue);
029 updateDuplicateData(
030 "Organization_", oldPrimaryKeyValue, newPrimaryKeyValue);
031 updateDuplicateData("Region", oldPrimaryKeyValue, newPrimaryKeyValue);
032 }
033
034 }