From b8699860653e593271e50c8ba1b73f66fcb6287c Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Wed, 6 Jan 2021 12:05:23 +0100 Subject: Starting on splitting up into different modules. --- src/main/java/io/trygvis/rules/dba/Container.java | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/main/java/io/trygvis/rules/dba/Container.java (limited to 'src/main/java/io/trygvis/rules/dba/Container.java') diff --git a/src/main/java/io/trygvis/rules/dba/Container.java b/src/main/java/io/trygvis/rules/dba/Container.java deleted file mode 100644 index 6df939d..0000000 --- a/src/main/java/io/trygvis/rules/dba/Container.java +++ /dev/null @@ -1,17 +0,0 @@ -package io.trygvis.rules.dba; - -public class Container { - public Cluster cluster; - public String name; - public String machineRole; - public String image; - public String tag; - - public Container(Cluster cluster, String name, String machineRole, String image, String tag) { - this.cluster = cluster; - this.name = name; - this.machineRole = machineRole; - this.image = image; - this.tag = tag; - } -} -- cgit v1.2.3