add kontor-javalin
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user