Deliver centralized role management feature
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / transport / CentralApp.java
1 package org.openecomp.portalapp.portal.transport;
2
3 import java.util.Date;
4
5 public class CentralApp {
6         public Long id;
7         public Date created;
8         public Date modified;
9         public Long createdId;
10         public Long modifiedId;
11         public Long rowNum;
12         public String name; // app_name
13         public String imageUrl; // app_image_url
14         public String description; // app_description
15         public String notes; // app_notes
16         public String url; // app_url
17         public String alternateUrl; // app_alternate_url
18         public String restEndpoint; // app_rest_endpoint
19         public String mlAppName; // ml_app_name
20         public String mlAppAdminId; // ml_app_admin_id;
21         public String motsId; // mots_id
22         public String appPassword; // app_password
23         public String open;
24         public String enabled;
25         public byte[] thumbnail;
26         public String username; // app_username
27         public String uebKey; // ueb_key
28         public String uebSecret; // ueb_secret
29         public String uebTopicName; // ueb_topic_name
30         
31         
32         public CentralApp(Long id, Date created, Date modified, Long createdId, Long modifiedId, Long rowNum, String name,
33                         String imageUrl, String description, String notes, String url, String alternateUrl, String restEndpoint,
34                         String mlAppName, String mlAppAdminId, String motsId, String appPassword, String open, String enabled,
35                         byte[] thumbnail, String username, String uebKey, String uebSecret, String uebTopicName) {
36                 super();
37                 this.id = id;
38                 this.created = created;
39                 this.modified = modified;
40                 this.createdId = createdId;
41                 this.modifiedId = modifiedId;
42                 this.rowNum = rowNum;
43                 this.name = name;
44                 this.imageUrl = imageUrl;
45                 this.description = description;
46                 this.notes = notes;
47                 this.url = url;
48                 this.alternateUrl = alternateUrl;
49                 this.restEndpoint = restEndpoint;
50                 this.mlAppName = mlAppName;
51                 this.mlAppAdminId = mlAppAdminId;
52                 this.motsId = motsId;
53                 this.appPassword = appPassword;
54                 this.open = open;
55                 this.enabled = enabled;
56                 this.thumbnail = thumbnail;
57                 this.username = username;
58                 this.uebKey = uebKey;
59                 this.uebSecret = uebSecret;
60                 this.uebTopicName = uebTopicName;
61         }
62         
63         public Long getId() {
64                 return id;
65         }
66         public void setId(Long id) {
67                 this.id = id;
68         }
69         
70         public Date getCreated() {
71                 return created;
72         }
73         public void setCreated(Date created) {
74                 this.created = created;
75         }
76         public Date getModified() {
77                 return modified;
78         }
79         public void setModified(Date modified) {
80                 this.modified = modified;
81         }
82         public Long getCreatedId() {
83                 return createdId;
84         }
85         public void setCreatedId(Long createdId) {
86                 this.createdId = createdId;
87         }
88         public Long getModifiedId() {
89                 return modifiedId;
90         }
91         public void setModifiedId(Long modifiedId) {
92                 this.modifiedId = modifiedId;
93         }
94         public Long getRowNum() {
95                 return rowNum;
96         }
97         public void setRowNum(Long rowNum) {
98                 this.rowNum = rowNum;
99         }
100         public String getName() {
101                 return name;
102         }
103         public void setName(String name) {
104                 this.name = name;
105         }
106         public String getImageUrl() {
107                 return imageUrl;
108         }
109         public void setImageUrl(String imageUrl) {
110                 this.imageUrl = imageUrl;
111         }
112         public String getDescription() {
113                 return description;
114         }
115         public void setDescription(String description) {
116                 this.description = description;
117         }
118         public String getNotes() {
119                 return notes;
120         }
121         public void setNotes(String notes) {
122                 this.notes = notes;
123         }
124         public String getUrl() {
125                 return url;
126         }
127         public void setUrl(String url) {
128                 this.url = url;
129         }
130         public String getAlternateUrl() {
131                 return alternateUrl;
132         }
133         public void setAlternateUrl(String alternateUrl) {
134                 this.alternateUrl = alternateUrl;
135         }
136         public String getRestEndpoint() {
137                 return restEndpoint;
138         }
139         public void setRestEndpoint(String restEndpoint) {
140                 this.restEndpoint = restEndpoint;
141         }
142         public String getMlAppName() {
143                 return mlAppName;
144         }
145         public void setMlAppName(String mlAppName) {
146                 this.mlAppName = mlAppName;
147         }
148         public String getMlAppAdminId() {
149                 return mlAppAdminId;
150         }
151         public void setMlAppAdminId(String mlAppAdminId) {
152                 this.mlAppAdminId = mlAppAdminId;
153         }
154         public String getMotsId() {
155                 return motsId;
156         }
157         public void setMotsId(String motsId) {
158                 this.motsId = motsId;
159         }
160         public String getAppPassword() {
161                 return appPassword;
162         }
163         public void setAppPassword(String appPassword) {
164                 this.appPassword = appPassword;
165         }
166         public String getOpen() {
167                 return open;
168         }
169         public void setOpen(String open) {
170                 this.open = open;
171         }
172         public String getEnabled() {
173                 return enabled;
174         }
175         public void setEnabled(String enabled) {
176                 this.enabled = enabled;
177         }
178         public byte[] getThumbnail() {
179                 return thumbnail;
180         }
181         public void setThumbnail(byte[] thumbnail) {
182                 this.thumbnail = thumbnail;
183         }
184         public String getUsername() {
185                 return username;
186         }
187         public void setUsername(String username) {
188                 this.username = username;
189         }
190         public String getUebKey() {
191                 return uebKey;
192         }
193         public void setUebKey(String uebKey) {
194                 this.uebKey = uebKey;
195         }
196         public String getUebSecret() {
197                 return uebSecret;
198         }
199         public void setUebSecret(String uebSecret) {
200                 this.uebSecret = uebSecret;
201         }
202         public String getUebTopicName() {
203                 return uebTopicName;
204         }
205         public void setUebTopicName(String uebTopicName) {
206                 this.uebTopicName = uebTopicName;
207         }
208         
209         
210 }