Deliver centralized role management feature
[portal.git] / ecomp-portal-widget-ms / widget-ms / src / main / java / org / openecomp / portalapp / widget / domain / WidgetCatalog.java
@@ -19,7 +19,6 @@ import javax.persistence.Transient;
 @Entity
 @Table(name="EP_WIDGET_CATALOG")
 public class WidgetCatalog{
-       private static final long serialVersionUID = 1L;
        
        @Id
        @Column(name = "widget_id")
@@ -128,7 +127,8 @@ public class WidgetCatalog{
 
        @Override
        public String toString() {
-               return "WidgetCatalog [name=" + name + ", desc=" + desc + ", allowAllUser=" + allowAllUser + "]";
+               return "WidgetCatalog [id=" + id + ", name=" + name + ", desc=" + desc + ", fileLocation=" + fileLocation
+                               + ", allowAllUser=" + allowAllUser + ", serviceId=" + serviceId + ", sortOrder=" + sortOrder
+                               + ", statusCode=" + statusCode + ", widgetRoles=" + widgetRoles + "]";
        }
-       
 }