Commit includes ControlLoopPolicy API and bugfixes
[policy/engine.git] / ECOMP-XACML / src / main / java / org / openecomp / policy / xacml / std / pap / StdPDPStatus.java
index dc29765..ddb7999 100644 (file)
@@ -34,19 +34,19 @@ public class StdPDPStatus implements Serializable, PDPStatus {
        
        private Status status = Status.UNKNOWN;
 
-       private Set<String>     loadErrors = new HashSet<String>();
+       private Set<String>     loadErrors = new HashSet<>();
        
-       private Set<String> loadWarnings = new HashSet<String>();
+       private Set<String> loadWarnings = new HashSet<>();
        
-       private Set<PDPPolicy> loadedPolicies = new HashSet<PDPPolicy>();
+       private Set<PDPPolicy> loadedPolicies = new HashSet<>();
        
-       private Set<PDPPolicy> loadedRootPolicies = new HashSet<PDPPolicy>();
+       private Set<PDPPolicy> loadedRootPolicies = new HashSet<>();
        
-       private Set<PDPPolicy> failedPolicies = new HashSet<PDPPolicy>();
+       private Set<PDPPolicy> failedPolicies = new HashSet<>();
        
-       private Set<PDPPIPConfig>       loadedPIPConfigs = new HashSet<PDPPIPConfig>();
+       private Set<PDPPIPConfig>       loadedPIPConfigs = new HashSet<>();
        
-       private Set<PDPPIPConfig>       failedPIPConfigs = new HashSet<PDPPIPConfig>();
+       private Set<PDPPIPConfig>       failedPIPConfigs = new HashSet<>();
        
        public StdPDPStatus() {
        }