KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > servicemix > maven > plugin > jbi > DependencyInformation


1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */

17 package org.apache.servicemix.maven.plugin.jbi;
18
19 /**
20  * The dependency information is a simple value object to help with passing
21  * around information on dependencies used to help in the creation of the jbi
22  * descriptors
23  *
24  */

25 public class DependencyInformation {
26
27     private String JavaDoc filename;
28
29     private String JavaDoc component;
30
31     private String JavaDoc description;
32
33     private String JavaDoc name;
34
35     private String JavaDoc version;
36
37     private String JavaDoc type;
38
39     public String JavaDoc getType() {
40         return type;
41     }
42
43     public void setType(String JavaDoc type) {
44         this.type = type;
45     }
46
47     public String JavaDoc getFilename() {
48         return filename;
49     }
50
51     public String JavaDoc getComponent() {
52         return component;
53     }
54
55     public String JavaDoc getDescription() {
56         return description;
57     }
58
59     public String JavaDoc getName() {
60         return name;
61     }
62
63     public String JavaDoc getVersion() {
64         return version;
65     }
66
67     public void setFilename(String JavaDoc artifactZip) {
68         this.filename = artifactZip;
69     }
70
71     public void setComponent(String JavaDoc component) {
72         this.component = component;
73     }
74
75     public void setDescription(String JavaDoc description) {
76         this.description = description;
77     }
78
79     public void setName(String JavaDoc name) {
80         this.name = name;
81     }
82
83     public void setVersion(String JavaDoc version) {
84         this.version = version;
85     }
86 }
87
Popular Tags