1 package com.simpligility.maven.plugins.android.configuration;
2
3 /**
4 * Configuration for the integration test runs. This class is only the definition of the parameters that are
5 * shadowed in
6 * {@link com.simpligility.maven.plugins.android.standalonemojos.PushMojo} and used there.
7 *
8 * @author Manfred Moser - manfred@simpligility.com
9 */
10 public class Push
11 {
12 /**
13 * Mirror of {@link com.simpligility.maven.plugins.android.standalonemojos.PushMojo#source}
14 */
15 private String source;
16 /**
17 * Mirror of {@link com.simpligility.maven.plugins.android.standalonemojos.PushMojo#destination}
18 */
19 private String destination;
20
21 public String getSource()
22 {
23 return source;
24 }
25
26 public String getDestination()
27 {
28 return destination;
29 }
30 }