Move the VNFM Simulator into CSIT
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / vnfm-simulator / vnfm-service / src / main / java / org / onap / so / svnfm / simulator / model / VnfOperation.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.svnfm.simulator.model;
21
22 import javax.persistence.Column;
23 import javax.persistence.Entity;
24 import javax.persistence.EnumType;
25 import javax.persistence.Enumerated;
26 import javax.persistence.Id;
27 import javax.persistence.Table;
28 import org.onap.so.adapters.vnfmadapter.extclients.vnfm.model.InlineResponse200;
29
30 /**
31  *
32  * @author Lathishbabu Ganesan (lathishbabu.ganesan@est.tech)
33  * @author Ronan Kenny (ronan.kenny@est.tech)
34  */
35 @Entity
36 @Table(name = "VNF_OPERATION")
37 public class VnfOperation {
38     @Id
39     @Column(name = "operationId", nullable = false)
40     private String id;
41     private String vnfInstanceId;
42
43     @Enumerated(EnumType.STRING)
44     private InlineResponse200.OperationEnum operation;
45
46     @Enumerated(EnumType.STRING)
47     private InlineResponse200.OperationStateEnum operationState;
48
49     public String getId() {
50         return id;
51     }
52
53     public void setId(final String id) {
54         this.id = id;
55     }
56
57     public String getVnfInstanceId() {
58         return vnfInstanceId;
59     }
60
61     public void setVnfInstanceId(final String vnfInstanceId) {
62         this.vnfInstanceId = vnfInstanceId;
63     }
64
65     public InlineResponse200.OperationEnum getOperation() {
66         return operation;
67     }
68
69     public void setOperation(final InlineResponse200.OperationEnum operation) {
70         this.operation = operation;
71     }
72
73     public InlineResponse200.OperationStateEnum getOperationState() {
74         return operationState;
75     }
76
77     public void setOperationState(final InlineResponse200.OperationStateEnum operationState) {
78         this.operationState = operationState;
79     }
80 }