1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.util.pom;
17
18 public class Pom {
19
20 Line artifactId;
21 Line description;
22 Line name;
23 Line version;
24 Line packaging;
25 Line endParentTag;
26
27 public Line getArtifactId() {
28 return artifactId;
29 }
30
31 public void setArtifactId(Line artifactId) {
32 this.artifactId = artifactId;
33 }
34
35 public Line getDescription() {
36 return description;
37 }
38
39 public void setDescription(Line description) {
40 this.description = description;
41 }
42
43 public Line getName() {
44 return name;
45 }
46
47 public void setName(Line name) {
48 this.name = name;
49 }
50
51 public Line getVersion() {
52 return version;
53 }
54
55 public void setVersion(Line version) {
56 this.version = version;
57 }
58
59 public Line getPackaging() {
60 return packaging;
61 }
62
63 public void setPackaging(Line packaging) {
64 this.packaging = packaging;
65 }
66
67 public Line getEndParentTag() {
68 return endParentTag;
69 }
70
71 public void setEndParentTag(Line endParentTag) {
72 this.endParentTag = endParentTag;
73 }
74
75 }