View Javadoc

1   /**
2    * Copyright 2010-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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  }