[SDC-29] rebase continue work to align source
[sdc.git] / ui-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / ArtifactInfo.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.ci.tests.datatypes;
22
23 public class ArtifactInfo {
24
25         private String filepath;
26         private String filename;
27         private String description;
28         private String artifactType;
29         private String artifactLabel;
30         private String artifactVersion;
31
32         public ArtifactInfo(String filepath, String filename, String description, String artifactLabel,
33                         String artifactType) {
34                 super();
35                 this.filepath = filepath;
36                 this.filename = filename;
37                 this.description = description;
38                 this.artifactType = artifactType;
39                 this.artifactLabel = artifactLabel;
40         }
41         
42         public ArtifactInfo(String filepath, String filename, String description, String artifactLabel,
43                         String artifactType, String artifactVersion) {
44                 super();
45                 this.filepath = filepath;
46                 this.filename = filename;
47                 this.description = description;
48                 this.artifactType = artifactType;
49                 this.artifactLabel = artifactLabel;
50                 this.artifactVersion = artifactVersion;
51         }
52
53         public ArtifactInfo() {
54                 super();
55         }
56         
57         public String getArtifactVersion() {
58                 return artifactVersion;
59         }
60
61         public void setArtifactVersion(String artifactVersion) {
62                 this.artifactVersion = artifactVersion;
63         }
64
65         public String getFilepath() {
66                 return filepath;
67         }
68
69         public void setFilepath(String filepath) {
70                 this.filepath = filepath;
71         }
72
73         public String getFilename() {
74                 return filename;
75         }
76
77         public void setFilename(String filename) {
78                 this.filename = filename;
79         }
80
81         public String getDescription() {
82                 return description;
83         }
84
85         public void setDescription(String description) {
86                 this.description = description;
87         }
88
89         public String getArtifactType() {
90                 return artifactType;
91         }
92
93         public void setArtifactType(String artifactType) {
94                 this.artifactType = artifactType;
95         }
96
97         public String getArtifactLabel() {
98                 return artifactLabel;
99         }
100
101         public void setArtifactLabel(String artifactLabel) {
102                 this.artifactLabel = artifactLabel;
103         }
104
105 }