feat:Add file transfer function
[usecase-ui/server.git] / server / src / main / java / org / onap / usecaseui / server / bean / intent / IntentInstance.java
index 521f28c..8676821 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2017 CTC, Inc. and others. All rights reserved.
+ * Copyright (C) 2021 CTC, Inc. and others. All rights reserved.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -56,6 +56,9 @@ public class IntentInstance implements Serializable {
     @Column(name = "line_num")
     private String lineNum;
 
+    @Column(name = "delete_state")
+    private int deleteState;
+
     public IntentInstance() {
 
     }
@@ -147,4 +150,12 @@ public class IntentInstance implements Serializable {
     public void setLineNum(String lineNum) {
         this.lineNum = lineNum;
     }
+
+    public int getDeleteState() {
+        return deleteState;
+    }
+
+    public void setDeleteState(int deleteState) {
+        this.deleteState = deleteState;
+    }
 }
\ No newline at end of file