1 package com.simpligility.maven.plugins.android.configuration;
2
3 import org.apache.maven.plugins.annotations.Parameter;
4
5
6
7
8
9
10 public class BuildConfigConstant
11 {
12
13
14
15
16 @Parameter ( property = "android.buildConfigConstants[].name" , required = true )
17 private String name;
18
19
20
21
22
23 @Parameter ( property = "android.buildConfigConstants[].type", required = true )
24 private String type;
25
26
27
28
29
30 @Parameter ( property = "android.buildConfigConstants[].value" , required = true )
31 private String value;
32
33 public String getType()
34 {
35 return type;
36 }
37
38 public String getValue()
39 {
40 return value;
41 }
42
43 public String getName()
44 {
45 return name;
46 }
47 }