Rework the Clamp db model
[clamp.git] / src / main / java / org / onap / clamp / clds / model / CldsTemplate.java
index 6e2c8d7..a96ee38 100644 (file)
@@ -5,16 +5,16 @@
  * Copyright (C) 2017 AT&T Intellectual Property. 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. 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  * http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software 
- * distributed under the License is distributed on an "AS IS" BASIS, 
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
- * See the License for the specific language governing permissions and 
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
  * limitations under the License.
  * ============LICENSE_END============================================
  * ===================================================================
 
 package org.onap.clamp.clds.model;
 
-import org.onap.clamp.clds.dao.CldsDao;
-
 import javax.ws.rs.NotFoundException;
 
+import org.onap.clamp.clds.dao.CldsDao;
+
 /**
  * Represent a CLDS Model.
  */
 public class CldsTemplate {
 
-    public static final String STATUS_DESIGN = "DESIGN";
-    public static final String STATUS_ACTIVE = "ACTIVE";
-    public static final String STATUS_STOPPED = "STOPPED";
+    public static final String STATUS_DESIGN   = "DESIGN";
+    public static final String STATUS_ACTIVE   = "ACTIVE";
+    public static final String STATUS_STOPPED  = "STOPPED";
     public static final String STATUS_DELETING = "DELETING";
-    public static final String STATUS_ERROR = "ERROR"; // manual intervention required
-    public static final String STATUS_UNKNOWN = "UNKNOWN";
-
-    private String id;
-    private String name;
-    private String controlNamePrefix;
-    private String controlNameUuid;
-    private String bpmnId;
-    private String bpmnUserid;
-    private String bpmnText;
-    private String imageId;
-    private String imageUserid;
-    private String imageText;
-    private String propId;
-    private String propUserid;
-    private String propText;
+    public static final String STATUS_ERROR    = "ERROR";   // manual
+                                                            // intervention
+                                                            // required
+    public static final String STATUS_UNKNOWN  = "UNKNOWN";
+
+    private String             id;
+    private String             name;
+    private String             controlNamePrefix;
+    private String             controlNameUuid;
+    private String             bpmnId;
+    private String             bpmnUserid;
+    private String             bpmnText;
+    private String             imageId;
+    private String             imageUserid;
+    private String             imageText;
+    private String             propId;
+    private String             propUserid;
+    private String             propText;
+
+    private boolean            userAuthorizedToUpdate;
 
     /**
      * Save template to DB.
@@ -183,4 +187,11 @@ public class CldsTemplate {
         this.imageId = imageId;
     }
 
+    public boolean isUserAuthorizedToUpdate() {
+        return userAuthorizedToUpdate;
+    }
+
+    public void setUserAuthorizedToUpdate(boolean userAuthorizedToUpdate) {
+        this.userAuthorizedToUpdate = userAuthorizedToUpdate;
+    }
 }