Reduce number of parameters in constructor
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / transport / CentralUserApp.java
index 59ce5fb..6d96004 100644 (file)
@@ -33,7 +33,7 @@
  *
  * ============LICENSE_END============================================
  *
- * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ * 
  */
 package org.onap.portalapp.portal.transport;
 
@@ -46,7 +46,7 @@ public class CentralUserApp implements Serializable, Comparable {
        private Long userId;
        private CentralApp app;
        private CentralRole role;
-       private Short priority;
+       private Integer priority;
 
        /**
         * @return the userId
@@ -96,7 +96,7 @@ public class CentralUserApp implements Serializable, Comparable {
        /**
         * @return the priority
         */
-       public Short getPriority() {
+       public Integer getPriority() {
                return priority;
        }
 
@@ -104,7 +104,7 @@ public class CentralUserApp implements Serializable, Comparable {
         * @param priority
         *            the priority to set
         */
-       public void setPriority(Short priority) {
+       public void setPriority(Integer priority) {
                this.priority = priority;
        }