All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.paypal.butterfly.extensions.api.upgrade.UpgradeTemplate Maven / Gradle / Ivy

There is a newer version: 3.2.7
Show newest version
package com.paypal.butterfly.extensions.api.upgrade;

import com.paypal.butterfly.extensions.api.TransformationTemplate;

/**
 * A special type of transformation template that is intended to upgrade an application
 *
 * @author facarvalho
 */
abstract class UpgradeTemplate extends TransformationTemplate {

    /**
     * Returns the current version of the application, in other words, the
     * version the application would be upgraded from when this upgrade
     * template is executed
     *
     * @return the current version of the application
     */
    public abstract String getCurrentVersion();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy