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