eee12234eec3b190383a751f4880100a9dc10200
[portal.git] / ecomp-portal-BE-os / src / main / java / org / openecomp / portalapp / portal / transport / OnboardingApp.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.transport;
21
22 public class OnboardingApp {
23
24         public Long id;
25
26         public String name;
27
28         public String imageUrl;
29         
30         public String imageLink;
31
32         public String description;
33
34         public String notes;
35
36         public String url;
37
38         public String alternateUrl;
39
40         public String restUrl;
41
42         public Boolean isOpen;
43
44         public Boolean isEnabled;
45
46         public String username;
47
48         public String appPassword;
49
50         public String thumbnail;
51         
52         public String uebTopicName;
53         
54         public String uebKey;
55         
56         public String uebSecret;
57         
58         public Boolean restrictedApp;
59         
60         public Boolean isCentralAuth;
61         
62         public String nameSpace;
63
64         public void normalize() {
65                 this.name = (this.name == null) ? "" : this.name.trim();
66                 this.username = (this.username == null) ? "" : this.username.trim();
67                 this.appPassword = (this.appPassword == null) ? "" : this.appPassword.trim();
68         }
69
70         public void setUebTopicName(String topicName) {
71                 this.uebTopicName = topicName;
72         }
73
74         public void setUebKey(String key) {
75                 this.uebKey = key;
76         }
77         
78         public void setUebSecret(String secret) {
79                 this.uebSecret = secret;
80         }
81         
82         // Hide the implementation of restricted and normal app from the front end.
83         // The json sent and received will include restrictedApp but not appType.
84         
85         public void setRestrictedApp(Boolean restrictedApp) {
86                 this.restrictedApp = restrictedApp;
87         }
88 }
89