Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / client / sniro / beans / LicenseInfo.java
index 209792b..d71b4ec 100644 (file)
@@ -23,23 +23,22 @@ package org.onap.so.client.sniro.beans;
 import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.List;
-
 import com.fasterxml.jackson.annotation.JsonProperty;
 
-public class LicenseInfo implements Serializable{
+public class LicenseInfo implements Serializable {
 
-       private static final long serialVersionUID = 6878164369491185856L;
+    private static final long serialVersionUID = 6878164369491185856L;
 
-       @JsonProperty("licenseDemands")
-       private List<Demand> demands = new ArrayList<Demand>();
+    @JsonProperty("licenseDemands")
+    private List<Demand> demands = new ArrayList<Demand>();
 
 
-       public List<Demand> getDemands(){
-               return demands;
-       }
+    public List<Demand> getDemands() {
+        return demands;
+    }
 
-       public void setDemands(List<Demand> demands){
-               this.demands = demands;
-       }
+    public void setDemands(List<Demand> demands) {
+        this.demands = demands;
+    }
 
 }