f953634a3d90906dbecae72f06fe8085fe0215d8
[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 void normalize() {
61                 this.name = (this.name == null) ? "" : this.name.trim();
62                 this.username = (this.username == null) ? "" : this.username.trim();
63                 this.appPassword = (this.appPassword == null) ? "" : this.appPassword.trim();
64         }
65
66         public void setUebTopicName(String topicName) {
67                 this.uebTopicName = topicName;
68         }
69
70         public void setUebKey(String key) {
71                 this.uebKey = key;
72         }
73         
74         public void setUebSecret(String secret) {
75                 this.uebSecret = secret;
76         }
77         
78         // Hide the implementation of restricted and normal app from the front end.
79         // The json sent and received will include restrictedApp but not appType.
80         
81         public void setRestrictedApp(Boolean restrictedApp) {
82                 this.restrictedApp = restrictedApp;
83         }
84 }
85