diff --git a/jinja-templates/computer-type.java.j2 b/jinja-templates/computer-type.java.j2 new file mode 100644 index 0000000..678d03c --- /dev/null +++ b/jinja-templates/computer-type.java.j2 @@ -0,0 +1,3 @@ +package hu.bme.mit.ase.cps.types.computers; + +// Write here your solution for Task 1 diff --git a/jinja-templates/deployment.java.j2 b/jinja-templates/deployment.java.j2 new file mode 100644 index 0000000..bd41711 --- /dev/null +++ b/jinja-templates/deployment.java.j2 @@ -0,0 +1,3 @@ +package hu.bme.mit.ase.cps.deployments; + +// Write here your solution for Task 4 diff --git a/jinja-templates/software-repository.java.j2 b/jinja-templates/software-repository.java.j2 new file mode 100644 index 0000000..11d107a --- /dev/null +++ b/jinja-templates/software-repository.java.j2 @@ -0,0 +1,3 @@ +package hu.bme.mit.ase.cps.types.software; + +// Write here your solution for Task 3 diff --git a/jinja-templates/software-type.java.j2 b/jinja-templates/software-type.java.j2 new file mode 100644 index 0000000..48f392a --- /dev/null +++ b/jinja-templates/software-type.java.j2 @@ -0,0 +1,5 @@ +package hu.bme.mit.ase.cps.types.software; + +import java.util.List; + +// Write here your solution for Task 2