Remove 'All rights reserved.' on apache 2 license
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / model / orchestrator / ServiceOrderInfoJson.java
1 /**
2  *     Copyright (c) 2018 Orange
3  *
4  *     Licensed under the Apache License, Version 2.0 (the "License");
5  *     you may not use this file except in compliance with the License.
6  *     You may obtain a copy of the License at
7  *
8  *         http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *     Unless required by applicable law or agreed to in writing, software
11  *     distributed under the License is distributed on an "AS IS" BASIS,
12  *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *     See the License for the specific language governing permissions and
14  *     limitations under the License.
15  */
16 package org.onap.nbi.apis.serviceorder.model.orchestrator;
17
18 import javax.persistence.Entity;
19 import javax.persistence.GeneratedValue;
20 import javax.persistence.GenerationType;
21 import javax.persistence.Id;
22 import javax.persistence.Lob;
23
24 @Entity
25 public class ServiceOrderInfoJson {
26
27     @Id
28     @GeneratedValue(strategy = GenerationType.AUTO)
29     private Long internalId;
30
31     private String serviceOrderId;
32
33     @Lob
34     private String serviceOrderInfoJson;
35
36     public ServiceOrderInfoJson() {}
37
38     public ServiceOrderInfoJson(String serviceOrderId, String serviceOrderInfoJson) {
39         this.serviceOrderId = serviceOrderId;
40         this.serviceOrderInfoJson = serviceOrderInfoJson;
41     }
42
43     public String getServiceOrderId() {
44         return serviceOrderId;
45     }
46
47     public void setServiceOrderId(String serviceOrderId) {
48         this.serviceOrderId = serviceOrderId;
49     }
50
51     public String getServiceOrderInfoJson() {
52         return serviceOrderInfoJson;
53     }
54
55     public void setServiceOrderInfoJson(String serviceOrderInfoJson) {
56         this.serviceOrderInfoJson = serviceOrderInfoJson;
57     }
58 }