nexus site path corrected
[portal.git] / ecomp-portal-BE / src / main / java / org / openecomp / portalapp / portal / transport / AppCatalogPersonalization.java
1 package org.openecomp.portalapp.portal.transport;
2
3
4 /**
5  * Model for the object PUT to the controller when the user takes an action on
6  * an application in the catalog.
7  */
8 public class AppCatalogPersonalization {
9
10         public Long appId;
11         public Boolean select;
12         public Boolean pending;
13
14         public Long getAppId() {
15                 return appId;
16         }
17
18         public void setAppId(Long appId) {
19                 this.appId = appId;
20         }
21
22         public Boolean getSelect() {
23                 return select;
24         }
25
26         public void setSelect(Boolean select) {
27                 this.select = select;
28         }
29
30         public Boolean getPending() {
31                 return pending;
32         }
33
34         public void setPending(Boolean pending) {
35                 this.pending = pending;
36         }
37
38 }