[MSO-8] Update the maven dependency
[so.git] / mso-catalog-db / src / main / java / org / openecomp / mso / db / catalog / beans / ServiceToAllottedResources.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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 package org.openecomp.mso.db.catalog.beans;
21
22 import java.io.Serializable;
23 import java.sql.Timestamp;
24
25 public class ServiceToAllottedResources implements Serializable {
26
27         private String serviceModelUuid;
28         private String arModelCustomizationUuid;
29         private Timestamp created;
30
31         public static final long serialVersionUID = -1322322139926390329L;
32
33         public ServiceToAllottedResources() {
34                 super();
35         }
36
37         public String getServiceModelUuid() {
38                 return this.serviceModelUuid;
39         }
40         public void setServiceModelUuid(String serviceModelUuid) {
41                 this.serviceModelUuid = serviceModelUuid;
42         }
43         public String getArModelCustomizationUuid() {
44                 return this.arModelCustomizationUuid;
45         }
46         public void setArModelCustomizationUuid(String arModelCustomizationUuid) {
47                 this.arModelCustomizationUuid = arModelCustomizationUuid;
48         }
49         public Timestamp getCreated() {
50                 return this.created;
51         }
52         public void setCreated(Timestamp created) {
53                 this.created = created;
54         }
55
56         @Override
57         public String toString() {
58                 StringBuilder sb = new StringBuilder();
59                 sb.append("serviceModelUuid=");
60                 sb.append(this.serviceModelUuid);
61                 sb.append("arModelCustomizationUuid=");
62                 sb.append(this.arModelCustomizationUuid);
63
64                 return sb.toString();
65         }
66
67 }