2  * Copyright 2016-2017, Nokia Corporation
 
   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
 
   8  *     http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  17 package com.nokia.vfcadaptor.beans;
 
  19 import java.io.Serializable;
 
  21 import javax.persistence.Column;
 
  22 import javax.persistence.Entity;
 
  23 import javax.persistence.GeneratedValue;
 
  24 import javax.persistence.GenerationType;
 
  25 import javax.persistence.Id;
 
  26 import javax.persistence.Table;
 
  30 @Table(name = "vnfm_job_execution_record")
 
  31 public class VnfmJobExecutionInfo implements Serializable{
 
  32         private static final long serialVersionUID = -2880159539002942812L;
 
  35         @GeneratedValue(strategy=GenerationType.AUTO)
 
  38         @Column(name = "vnfmExecutionId")
 
  39         private String vnfmExecutionId;
 
  41         @Column(name = "vnfInstanceId")
 
  42         private String vnfInstanceId;
 
  44         @Column(name = "vnfmInterfceName")
 
  45         private String vnfmInterfceName;
 
  47         @Column(name = "status")
 
  48         private String status;
 
  50         public long getJobId() {
 
  54         public void setJobId(long jobId) {
 
  58         public String getVnfmExecutionId() {
 
  59                 return vnfmExecutionId;
 
  62         public void setVnfmExecutionId(String vnfmExecutionId) {
 
  63                 this.vnfmExecutionId = vnfmExecutionId;
 
  66         public String getVnfInstanceId() {
 
  70         public void setVnfInstanceId(String vnfInstanceId) {
 
  71                 this.vnfInstanceId = vnfInstanceId;
 
  74         public String getVnfmInterfceName() {
 
  75                 return vnfmInterfceName;
 
  78         public void setVnfmInterfceName(String vnfmInterfceName) {
 
  79                 this.vnfmInterfceName = vnfmInterfceName;
 
  82         public String getStatus() {
 
  86         public void setStatus(String status) {