XSS Vulnerability fix in AppsController
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / transport / EPWidgetsSortPreference.java
index 03b7c14..e1f5c29 100644 (file)
 package org.onap.portalapp.portal.transport;
 
 import java.util.List;
+import org.hibernate.validator.constraints.SafeHtml;
 
 public class EPWidgetsSortPreference {
        
        private int SizeX;
        private int SizeY;
+       @SafeHtml
        private String headerText;
+       @SafeHtml
        private String url;
        private Long widgetid;
        private List<Object> attrb;
+       @SafeHtml
        private String widgetIdentifier;
        private int row;
        private int col;