Reduce number of parameters in constructor
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / transport / RemoteRole.java
index a86f10f..a5e0b31 100644 (file)
  *
  * ============LICENSE_END============================================
  *
- * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ * 
  */
 package org.onap.portalapp.portal.transport;
 
+import java.util.Set;
+
 public class RemoteRole {
 
        private Long id;
        private String name;
+    private Set roleFunctions;
+
+       public Set getRoleFunctions() {
+               return roleFunctions;
+       }
+
+       public void setRoleFunctions(Set roleFunctions) {
+               this.roleFunctions = roleFunctions;
+       }
        
        public Long getId() {
                return id;