vid-automation selenium tests
[vid.git] / vid-automation / src / main / java / vid / automation / test / model / Service.java
index f5eaf6b..4ed51ee 100644 (file)
@@ -1,7 +1,5 @@
 package vid.automation.test.model;
 
-import java.util.ArrayList;
-
 /**
  * Created by itzikliderman on 19/06/2017.
  */
@@ -24,4 +22,15 @@ public class Service {
     public String serviceRole;
 
     public Service() {}
+
+    public Service(String type, String uuid, String invariantUuid, String name, String version, String category, String description, String serviceRole) {
+        this.type = type;
+        this.uuid = uuid;
+        this.invariantUuid = invariantUuid;
+        this.name = name;
+        this.version = version;
+        this.category = category;
+        this.description = description;
+        this.serviceRole = serviceRole;
+    }
 }