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

com.jayway.maven.plugins.android.configuration.Push Maven / Gradle / Ivy

There is a newer version: 4.0.0-rc.2
Show newest version
package com.jayway.maven.plugins.android.configuration;

/**
 * Configuration for the integration test runs. This class is only the definition of the parameters that are
 * shadowed in
 * {@link com.jayway.maven.plugins.android.standalonemojos.PushMojo} and used there.
 *
 * @author Manfred Moser 
 */
public class Push {
    /**
      * Mirror of {@link com.jayway.maven.plugins.android.standalonemojos.PushMojo#source}
      */
    private String source;
    /**
      * Mirror of {@link com.jayway.maven.plugins.android.standalonemojos.PushMojo#destination}
      */
    private String destination;

    public String getSource() {
        return source;
    }

    public String getDestination() {
        return destination;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy