Merge "Reorder modifiers"
[so.git] / mso-catalog-db / src / main / java / org / openecomp / mso / db / catalog / beans / AllottedResource.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 import java.io.Serializable;
24 import java.sql.Timestamp;
25
26 import org.openecomp.mso.db.catalog.utils.MavenLikeVersioning;
27
28 public class AllottedResource extends MavenLikeVersioning implements Serializable {
29         
30         private static final long serialVersionUID = 768026109321305392L;
31         
32         private String modelUuid = null;
33         private String modelInvariantUuid = null;
34         private String modelVersion = null; 
35         private String modelName = null;
36         private String toscaNodeType = null;
37         private String subcategory = null;
38         private String description = null;
39         private Timestamp created = null;
40
41         public AllottedResource() {
42         }
43         
44         public String getModelUuid() {
45                 return this.modelUuid;
46         }
47         public void setModelUuid(String modelUuid) {
48                 this.modelUuid = modelUuid;
49         }
50         public String getModelInvariantUuid() {
51                 return this.modelInvariantUuid;
52         }
53         public void setModelInvariantUuid(String modelInvariantUuid) {
54                 this.modelInvariantUuid = modelInvariantUuid;
55         }
56         public String getModelVersion() {
57                 return this.modelVersion;
58         }
59         public void setModelVersion(String modelVersion) {
60                 this.modelVersion = modelVersion;
61         }
62         public String getModelName() {
63                 return this.modelName;
64         }
65         public void setModelName(String modelName) {
66                 this.modelName = modelName;
67         }
68         public String getToscaNodeType() {
69                 return this.toscaNodeType;
70         }
71         public void setToscaNodeType(String toscaNodeType) {
72                 this.toscaNodeType = toscaNodeType;
73         }       
74         public String getSubcategory() {
75                 return this.subcategory;
76         }
77         public void setSubcategory(String subcategory) {
78                 this.subcategory = subcategory;
79         }       
80         public String getDescription() {
81                 return this.description;
82         }
83         public void setDescription(String description) {
84                 this.description = description;
85         }
86         public Timestamp getCreated() {
87                 return created;
88         }
89         public void setCreated(Timestamp created) {
90                 this.created = created;
91         }       
92
93 }