382d4e89a1b8385bfec4d807d93a60976c59941e
[clamp.git] / src / main / java / org / onap / clamp / clds / model / CldsInfo.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License"); 
9  * you may not use this file except in compliance with the License. 
10  * You may obtain a copy of the License at
11  * 
12  * http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software 
15  * distributed under the License is distributed on an "AS IS" BASIS, 
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
17  * See the License for the specific language governing permissions and 
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  * 
22  */
23
24 package org.onap.clamp.clds.model;
25
26 public class CldsInfo {
27
28     private String  userName;
29     private String  cldsVersion;
30     private boolean permissionReadCl;
31     private boolean permissionUpdateCl;
32     private boolean permissionReadTemplate;
33     private boolean permissionUpdateTemplate;
34
35     public String getUserName() {
36         return userName;
37     }
38
39     public void setUserName(String userName) {
40         this.userName = userName;
41     }
42
43     public String getCldsVersion() {
44         return cldsVersion;
45     }
46
47     public void setCldsVersion(String cldsVersion) {
48         this.cldsVersion = cldsVersion;
49     }
50
51     public boolean isPermissionReadCl() {
52         return permissionReadCl;
53     }
54
55     public void setPermissionReadCl(boolean permissionReadCl) {
56         this.permissionReadCl = permissionReadCl;
57     }
58
59     public boolean isPermissionUpdateCl() {
60         return permissionUpdateCl;
61     }
62
63     public void setPermissionUpdateCl(boolean permissionUpdateCl) {
64         this.permissionUpdateCl = permissionUpdateCl;
65     }
66
67     public boolean isPermissionReadTemplate() {
68         return permissionReadTemplate;
69     }
70
71     public void setPermissionReadTemplate(boolean permissionReadTemplate) {
72         this.permissionReadTemplate = permissionReadTemplate;
73     }
74
75     public boolean isPermissionUpdateTemplate() {
76         return permissionUpdateTemplate;
77     }
78
79     public void setPermissionUpdateTemplate(boolean permissionUpdateTemplate) {
80         this.permissionUpdateTemplate = permissionUpdateTemplate;
81     }
82
83 }