Convert tabs to spaces basic refactoring
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / adapter / YAMLParams.java
index e67a23a..ec43a19 100644 (file)
@@ -23,75 +23,75 @@ package org.onap.policy.rest.adapter;
 import java.util.List;
 
 public class YAMLParams {
-       private String actor;
-       private String recipe;
-       private String clname;
-       private String limit;
-       private String timeWindow;
-       private String timeUnits;
-       private String guardActiveStart;
-       private String guardActiveEnd;
-       private List<String> blackList;
-       private List<String> targets;
-       
-       public String getActor() {
-               return actor;
-       }
-       public void setActor(String actor) {
-               this.actor = actor;
-       }
-       public String getRecipe() {
-               return recipe;
-       }
-       public void setRecipe(String recipe) {
-               this.recipe = recipe;
-       }
-       public String getLimit() {
-               return limit;
-       }
-       public void setLimit(String limit) {
-               this.limit = limit;
-       }
-       public String getTimeWindow() {
-               return timeWindow;
-       }
-       public void setTimeWindow(String timeWindow) {
-               this.timeWindow = timeWindow;
-       }
-       public String getGuardActiveStart() {
-               return guardActiveStart;
-       }
-       public void setGuardActiveStart(String guardActiveStart) {
-               this.guardActiveStart = guardActiveStart;
-       }
-       public String getGuardActiveEnd() {
-               return guardActiveEnd;
-       }
-       public void setGuardActiveEnd(String guardActiveEnd) {
-               this.guardActiveEnd = guardActiveEnd;
-       }
-       public List<String> getBlackList() {
-               return blackList;
-       }
-       public void setBlackList(List<String> blackList) {
-               this.blackList = blackList;
-       }
-       public String getClname() {
-               return clname;
-       }
-       public void setClname(String clname) {
-               this.clname = clname;
-       }
-       public String getTimeUnits() {
-               return timeUnits;
-       }
-       public void setTimeUnits(String timeUnits) {
-               this.timeUnits = timeUnits;
-       }
-       public List<String> getTargets() {
-               return targets;
-       }
-       public void setTargets(List<String> targets) {
-               this.targets = targets;
-       }
+    private String actor;
+    private String recipe;
+    private String clname;
+    private String limit;
+    private String timeWindow;
+    private String timeUnits;
+    private String guardActiveStart;
+    private String guardActiveEnd;
+    private List<String> blackList;
+    private List<String> targets;
+
+    public String getActor() {
+        return actor;
+    }
+    public void setActor(String actor) {
+        this.actor = actor;
+    }
+    public String getRecipe() {
+        return recipe;
+    }
+    public void setRecipe(String recipe) {
+        this.recipe = recipe;
+    }
+    public String getLimit() {
+        return limit;
+    }
+    public void setLimit(String limit) {
+        this.limit = limit;
+    }
+    public String getTimeWindow() {
+        return timeWindow;
+    }
+    public void setTimeWindow(String timeWindow) {
+        this.timeWindow = timeWindow;
+    }
+    public String getGuardActiveStart() {
+        return guardActiveStart;
+    }
+    public void setGuardActiveStart(String guardActiveStart) {
+        this.guardActiveStart = guardActiveStart;
+    }
+    public String getGuardActiveEnd() {
+        return guardActiveEnd;
+    }
+    public void setGuardActiveEnd(String guardActiveEnd) {
+        this.guardActiveEnd = guardActiveEnd;
+    }
+    public List<String> getBlackList() {
+        return blackList;
+    }
+    public void setBlackList(List<String> blackList) {
+        this.blackList = blackList;
+    }
+    public String getClname() {
+        return clname;
+    }
+    public void setClname(String clname) {
+        this.clname = clname;
+    }
+    public String getTimeUnits() {
+        return timeUnits;
+    }
+    public void setTimeUnits(String timeUnits) {
+        this.timeUnits = timeUnits;
+    }
+    public List<String> getTargets() {
+        return targets;
+    }
+    public void setTargets(List<String> targets) {
+        this.targets = targets;
+    }
 }