Initial OpenECOMP Portal commit
[portal.git] / ecomp-portal-BE / src / main / java / org / openecomp / portalapp / portal / transport / AppCatalogPersonalization.java
diff --git a/ecomp-portal-BE/src/main/java/org/openecomp/portalapp/portal/transport/AppCatalogPersonalization.java b/ecomp-portal-BE/src/main/java/org/openecomp/portalapp/portal/transport/AppCatalogPersonalization.java
new file mode 100644 (file)
index 0000000..4ad2594
--- /dev/null
@@ -0,0 +1,38 @@
+package org.openecomp.portalapp.portal.transport;
+
+
+/**
+ * Model for the object PUT to the controller when the user takes an action on
+ * an application in the catalog.
+ */
+public class AppCatalogPersonalization {
+
+       public Long appId;
+       public Boolean select;
+       public Boolean pending;
+
+       public Long getAppId() {
+               return appId;
+       }
+
+       public void setAppId(Long appId) {
+               this.appId = appId;
+       }
+
+       public Boolean getSelect() {
+               return select;
+       }
+
+       public void setSelect(Boolean select) {
+               this.select = select;
+       }
+
+       public Boolean getPending() {
+               return pending;
+       }
+
+       public void setPending(Boolean pending) {
+               this.pending = pending;
+       }
+
+}
\ No newline at end of file