Deliver centralized role management feature
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / domain / EcompApp.java
1 /*-
2  * ================================================================================
3  * ECOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ================================================================================
19  */
20 package org.openecomp.portalapp.portal.domain;
21
22 /**
23  * Model for a subset of the columns in the fn_app table.
24  */
25 public class EcompApp {
26         
27         protected Long id;
28
29         public Long getId() {
30                 return id;
31         }
32         
33         public void setId(Long id) {
34                 this.id = id;
35         }
36         
37     private String name;
38
39         public String getName() {
40                 return name;
41         }
42
43         public void setName(String name) {
44                 this.name = name;
45         }
46         
47         private String imageUrl;
48
49         public String getImageUrl() {
50                 return imageUrl;
51         }
52
53         public void setImageUrl(String imageUrl) {
54                 this.imageUrl = imageUrl;
55         }
56         
57         private String description;
58
59         public String getDescription() {
60                 return description;
61         }
62
63         public void setDescription(String description) {
64                 this.description = description;
65         }
66         
67         private String notes;
68
69         public String getNotes() {
70                 return notes;
71         }
72
73         public void setNotes(String notes) {
74                 this.notes = notes;
75         }       
76
77         private String url;
78
79         public String getUrl() {
80                 return url;
81         }
82
83         public void setUrl(String url) {
84                 this.url = url;
85         }
86
87         private String alternateUrl;
88
89         public String getAlternateUrl() {
90                 return alternateUrl;
91         }
92
93         public void setAlternateUrl(String alternateUrl) {
94                 this.alternateUrl = alternateUrl;
95         }
96         
97         private String uebTopicName;
98         
99         public String getUebTopicName() {
100                 return uebTopicName;
101         }
102         
103         public void setUebTopicName(String topicName) {
104                 this.uebTopicName = topicName;
105         }
106         
107         private String uebKey;
108         
109         public String getUebKey() {
110                 return uebKey;
111         }
112         
113         public void setUebKey(String uebKey) {
114                 this.uebKey = uebKey;
115         }
116         
117         private String uebSecret;
118         
119         public String getUebSecret() {
120                 return uebSecret;
121         }
122         
123         public void setUebSecret(String secret) {
124                 this.uebSecret = secret;
125         }
126         
127         private Boolean enabled;
128         
129         public Boolean isEnabled() {
130                 return enabled;
131         }
132         
133         public void setEnabled(Boolean enable) {
134                 this.enabled = enable;
135         }
136
137         private Boolean restrictedApp;
138         
139         public Boolean isRestrictedApp() {
140                 return restrictedApp;
141         }
142         
143         public void setRestrictedApp(Boolean restrictedApp) {
144                 this.restrictedApp = restrictedApp;
145         }
146
147         private Boolean centralAuth;
148
149         public Boolean getCentralAuth() {
150                 return centralAuth;
151         }
152
153         public void setCentralAuth(Boolean centralAuth) {
154                 this.centralAuth = centralAuth;
155         }
156
157         private String nameSpace;
158         
159         public String getNameSpace() {
160                 return nameSpace;
161         }
162
163         public void setNameSpace(String nameSpace) {
164                 this.nameSpace = nameSpace;
165         }
166
167         
168 }