Change the header to SO
[so.git] / mso-catalog-db / src / main / java / org / openecomp / mso / db / catalog / beans / VfModuleToHeatFiles.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.mso.db.catalog.beans;
22
23
24
25 import java.io.Serializable;
26
27 public class VfModuleToHeatFiles implements Serializable {
28         
29     private String vfModuleModelUuid;
30     private String heatFilesArtifactUuid;
31     public static final long serialVersionUID = -1322322139926390329L;
32
33         public VfModuleToHeatFiles() {
34                 super();
35         }
36         
37         public String getVfModuleModelUuid() {
38                 return this.vfModuleModelUuid;
39         }
40         public void setVfModuleModelUuid(String vfModuleModelUuid) {
41                 this.vfModuleModelUuid = vfModuleModelUuid;
42         }
43         public String getHeatFilesArtifactUuid() {
44                 return this.heatFilesArtifactUuid;
45         }
46         public void setHeatFilesArtifactUuid(String heatFilesArtifactUuid) {
47                 this.heatFilesArtifactUuid = heatFilesArtifactUuid;
48         }
49         
50     @Override
51     public String toString () {
52         StringBuilder sb = new StringBuilder ();
53         sb.append ("vfModuleModelUuid=" + this.vfModuleModelUuid);
54         sb.append (", heatFilesArtifactUuid=" + this.heatFilesArtifactUuid);
55         return sb.toString ();
56     }
57
58 }