Modify the Ui
[clamp.git] / src / main / java / org / onap / clamp / clds / model / CldsInfo.java
index cf4be7f..f3cf6ed 100644 (file)
@@ -5,20 +5,20 @@
  * 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;
@@ -26,85 +26,85 @@ package org.onap.clamp.clds.model;
 import com.google.gson.annotations.Expose;
 
 public class CldsInfo {
-       @Expose
-       private String userName;
-       @Expose
-       private String cldsVersion;
-       @Expose
-       private boolean permissionReadCl;
-       @Expose
-       private boolean permissionUpdateCl;
-       @Expose
-       private boolean permissionReadTemplate;
-       @Expose
-       private boolean permissionUpdateTemplate;
-       @Expose
-       private boolean permissionReadTosca;
-       @Expose
-       private boolean permissionUpdateTosca;
-
-       public String getUserName() {
-               return userName;
-       }
-
-       public void setUserName(String userName) {
-               this.userName = userName;
-       }
-
-       public String getCldsVersion() {
-               return cldsVersion;
-       }
-
-       public void setCldsVersion(String cldsVersion) {
-               this.cldsVersion = cldsVersion;
-       }
-
-       public boolean isPermissionReadCl() {
-               return permissionReadCl;
-       }
-
-       public void setPermissionReadCl(boolean permissionReadCl) {
-               this.permissionReadCl = permissionReadCl;
-       }
-
-       public boolean isPermissionUpdateCl() {
-               return permissionUpdateCl;
-       }
-
-       public void setPermissionUpdateCl(boolean permissionUpdateCl) {
-               this.permissionUpdateCl = permissionUpdateCl;
-       }
-
-       public boolean isPermissionReadTemplate() {
-               return permissionReadTemplate;
-       }
-
-       public void setPermissionReadTemplate(boolean permissionReadTemplate) {
-               this.permissionReadTemplate = permissionReadTemplate;
-       }
-
-       public boolean isPermissionUpdateTemplate() {
-               return permissionUpdateTemplate;
-       }
-
-       public void setPermissionUpdateTemplate(boolean permissionUpdateTemplate) {
-               this.permissionUpdateTemplate = permissionUpdateTemplate;
-       }
-
-       public boolean isPermissionReadTosca() {
-               return permissionReadTosca;
-       }
-
-       public void setPermissionReadTosca(boolean permissionReadTosca) {
-               this.permissionReadTosca = permissionReadTosca;
-       }
-
-       public boolean isPermissionUpdateTosca() {
-               return permissionUpdateTosca;
-       }
-
-       public void setPermissionUpdateTosca(boolean permissionUpdateTosca) {
-               this.permissionUpdateTosca = permissionUpdateTosca;
-       }
+    @Expose
+    private String userName;
+    @Expose
+    private String cldsVersion;
+    @Expose
+    private boolean permissionReadCl;
+    @Expose
+    private boolean permissionUpdateCl;
+    @Expose
+    private boolean permissionReadTemplate;
+    @Expose
+    private boolean permissionUpdateTemplate;
+    @Expose
+    private boolean permissionReadTosca;
+    @Expose
+    private boolean permissionUpdateTosca;
+
+    public String getUserName() {
+        return userName;
+    }
+
+    public void setUserName(String userName) {
+        this.userName = userName;
+    }
+
+    public String getCldsVersion() {
+        return cldsVersion;
+    }
+
+    public void setCldsVersion(String cldsVersion) {
+        this.cldsVersion = cldsVersion;
+    }
+
+    public boolean isPermissionReadCl() {
+        return permissionReadCl;
+    }
+
+    public void setPermissionReadCl(boolean permissionReadCl) {
+        this.permissionReadCl = permissionReadCl;
+    }
+
+    public boolean isPermissionUpdateCl() {
+        return permissionUpdateCl;
+    }
+
+    public void setPermissionUpdateCl(boolean permissionUpdateCl) {
+        this.permissionUpdateCl = permissionUpdateCl;
+    }
+
+    public boolean isPermissionReadTemplate() {
+        return permissionReadTemplate;
+    }
+
+    public void setPermissionReadTemplate(boolean permissionReadTemplate) {
+        this.permissionReadTemplate = permissionReadTemplate;
+    }
+
+    public boolean isPermissionUpdateTemplate() {
+        return permissionUpdateTemplate;
+    }
+
+    public void setPermissionUpdateTemplate(boolean permissionUpdateTemplate) {
+        this.permissionUpdateTemplate = permissionUpdateTemplate;
+    }
+
+    public boolean isPermissionReadTosca() {
+        return permissionReadTosca;
+    }
+
+    public void setPermissionReadTosca(boolean permissionReadTosca) {
+        this.permissionReadTosca = permissionReadTosca;
+    }
+
+    public boolean isPermissionUpdateTosca() {
+        return permissionUpdateTosca;
+    }
+
+    public void setPermissionUpdateTosca(boolean permissionUpdateTosca) {
+        this.permissionUpdateTosca = permissionUpdateTosca;
+    }
 
 }