f4194cf2f55d50b84e3a75ba5d4653a2837ee119
[sdc.git] /
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.be.externalapi.servlet.representation;
22
23 public class ArtifactMetadata {
24         private String artifactName;
25         private String artifactType;
26         private String artifactURL;
27         private String artifactDescription;
28         private Integer artifactTimeout;
29         private String artifactChecksum;
30         private String artifactUUID;
31         private String artifactVersion;
32         private String generatedFromUUID;
33
34         public String getArtifactName() {
35                 return artifactName;
36         }
37
38         public void setArtifactName(String artifactName) {
39                 this.artifactName = artifactName;
40         }
41
42         public String getArtifactType() {
43                 return artifactType;
44         }
45
46         public void setArtifactType(String artifactType) {
47                 this.artifactType = artifactType;
48         }
49
50         public String getArtifactURL() {
51                 return artifactURL;
52         }
53
54         public void setArtifactURL(String artifactURL) {
55                 this.artifactURL = artifactURL;
56         }
57
58         public String getArtifactDescription() {
59                 return artifactDescription;
60         }
61
62         public void setArtifactDescription(String artifactDescription) {
63                 this.artifactDescription = artifactDescription;
64         }
65
66         public Integer getArtifactTimeout() {
67                 return artifactTimeout;
68         }
69
70         public void setArtifactTimeout(Integer artifactTimeout) {
71                 this.artifactTimeout = artifactTimeout;
72         }
73
74         public String getArtifactChecksum() {
75                 return artifactChecksum;
76         }
77
78         public void setArtifactChecksum(String artifactChecksum) {
79                 this.artifactChecksum = artifactChecksum;
80         }
81
82         public String getArtifactUUID() {
83                 return artifactUUID;
84         }
85
86         public void setArtifactUUID(String artifactUUID) {
87                 this.artifactUUID = artifactUUID;
88         }
89
90         public String getArtifactVersion() {
91                 return artifactVersion;
92         }
93
94         public void setArtifactVersion(String artifactVersion) {
95                 this.artifactVersion = artifactVersion;
96         }
97
98         public String getGeneratedFromUUID() {
99                 return generatedFromUUID;
100         }
101
102         public void setGeneratedFromUUID(String generatedFromUUID) {
103                 this.generatedFromUUID = generatedFromUUID;
104         }
105
106 }