add kontor-javalin

This commit is contained in:
2025-12-16 23:10:15 +01:00
parent 2a51b4a2f3
commit 25bc4e45ff
22 changed files with 572 additions and 0 deletions
@@ -0,0 +1,27 @@
package de.thpeetz.kontor.models;
public class Person {
private String name;
private int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
@@ -0,0 +1,4 @@
module de.thpeetz.kontor.models {
// We're exporting the only package we have in this subproject
exports de.thpeetz.kontor.models;
}