nexus site path corrected
[portal.git] / ecomp-portal-BE / 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 public class EcompApp {
23         
24         protected Long id;
25
26         public Long getId() {
27                 return id;
28         }
29         
30         public void setId(Long id) {
31                 this.id = id;
32         }
33         
34     private String name;
35
36         public String getName() {
37                 return name;
38         }
39
40         public void setName(String name) {
41                 this.name = name;
42         }
43         
44         private String imageUrl;
45
46         public String getImageUrl() {
47                 return imageUrl;
48         }
49
50         public void setImageUrl(String imageUrl) {
51                 this.imageUrl = imageUrl;
52         }
53         
54         private String description;
55
56         public String getDescription() {
57                 return description;
58         }
59
60         public void setDescription(String description) {
61                 this.description = description;
62         }
63         
64         private String notes;
65
66         public String getNotes() {
67                 return notes;
68         }
69
70         public void setNotes(String notes) {
71                 this.notes = notes;
72         }       
73
74         private String url;
75
76         public String getUrl() {
77                 return url;
78         }
79
80         public void setUrl(String url) {
81                 this.url = url;
82         }
83
84         private String alternateUrl;
85
86         public String getAlternateUrl() {
87                 return alternateUrl;
88         }
89
90         public void setAlternateUrl(String alternateUrl) {
91                 this.alternateUrl = alternateUrl;
92         }
93         
94         private String uebTopicName;
95         
96         public String getUebTopicName() {
97                 return uebTopicName;
98         }
99         
100         public void setUebTopicName(String topicName) {
101                 this.uebTopicName = topicName;
102         }
103         
104         private String uebKey;
105         
106         public String getUebKey() {
107                 return uebKey;
108         }
109         
110         public void setUebKey(String uebKey) {
111                 this.uebKey = uebKey;
112         }
113         
114         private String uebSecret;
115         
116         public String getUebSecret() {
117                 return uebSecret;
118         }
119         
120         public void setUebSecret(String secret) {
121                 this.uebSecret = secret;
122         }
123         
124         private Boolean enabled;
125         
126         public Boolean isEnabled() {
127                 return enabled;
128         }
129         
130         public void setEnabled(Boolean enable) {
131                 this.enabled = enable;
132         }
133
134         private Boolean restrictedApp;
135         
136         public Boolean isRestrictedApp() {
137                 return restrictedApp;
138         }
139         
140         public void setRestrictedApp(Boolean restrictedApp) {
141                 this.restrictedApp = restrictedApp;
142         }
143 }