001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.upgrade;
016    
017    import com.liferay.portal.kernel.upgrade.UpgradeProcess;
018    import com.liferay.portal.kernel.util.ReleaseInfo;
019    import com.liferay.portal.upgrade.v6_0_12_to_6_1_0.UpgradeAsset;
020    import com.liferay.portal.upgrade.v6_0_12_to_6_1_0.UpgradeDocumentLibrary;
021    import com.liferay.portal.upgrade.v6_0_12_to_6_1_0.UpgradeMessageBoards;
022    import com.liferay.portal.upgrade.v6_0_12_to_6_1_0.UpgradePermission;
023    import com.liferay.portal.upgrade.v6_0_12_to_6_1_0.UpgradePortletPreferences;
024    import com.liferay.portal.upgrade.v6_0_12_to_6_1_0.UpgradeSchema;
025    import com.liferay.portal.upgrade.v6_0_12_to_6_1_0.UpgradeUserName;
026    import com.liferay.portal.upgrade.v6_1_0.UpgradeAdminPortlets;
027    import com.liferay.portal.upgrade.v6_1_0.UpgradeCamelCasePortletPreferences;
028    import com.liferay.portal.upgrade.v6_1_0.UpgradeCountry;
029    import com.liferay.portal.upgrade.v6_1_0.UpgradeGroup;
030    import com.liferay.portal.upgrade.v6_1_0.UpgradeImageGallery;
031    import com.liferay.portal.upgrade.v6_1_0.UpgradeJournal;
032    import com.liferay.portal.upgrade.v6_1_0.UpgradeLayout;
033    import com.liferay.portal.upgrade.v6_1_0.UpgradeNavigation;
034    import com.liferay.portal.upgrade.v6_1_0.UpgradeSubscription;
035    import com.liferay.portal.upgrade.v6_1_0.UpgradeUserGroup;
036    import com.liferay.portal.upgrade.v6_1_0.UpgradeWorkflow;
037    
038    /**
039     * @author Matthew Kong
040     */
041    public class UpgradeProcess_6_0_12_to_6_1_0 extends UpgradeProcess {
042    
043            @Override
044            public int getThreshold() {
045                    return ReleaseInfo.RELEASE_6_1_0_BUILD_NUMBER;
046            }
047    
048            @Override
049            protected void doUpgrade() throws Exception {
050                    upgrade(UpgradeSchema.class);
051                    upgrade(UpgradeUserName.class);
052                    upgrade(UpgradeAdminPortlets.class);
053                    upgrade(UpgradeCamelCasePortletPreferences.class);
054                    upgrade(UpgradeCountry.class);
055                    upgrade(UpgradeDocumentLibrary.class);
056                    upgrade(UpgradeGroup.class);
057                    upgrade(UpgradeImageGallery.class);
058                    upgrade(UpgradeJournal.class);
059                    upgrade(UpgradeLayout.class);
060                    upgrade(UpgradeMessageBoards.class);
061                    upgrade(UpgradeNavigation.class);
062                    upgrade(UpgradePermission.class);
063                    upgrade(UpgradePortletPreferences.class);
064                    upgrade(UpgradeSubscription.class);
065                    upgrade(UpgradeUserGroup.class);
066                    upgrade(UpgradeWorkflow.class);
067                    upgrade(UpgradeAsset.class);
068            }
069    
070    }