added hash to appointment, implemented KassaBlanca parser

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2024-12-21 21:26:04 +01:00
parent fdec07f27c
commit 3158db3bbd
7 changed files with 187 additions and 17 deletions
@@ -1,7 +1,8 @@
/* © SRSoftware 2024 */
package de.srsoftware.cal.app;
import de.srsoftware.cal.importer.jena.Rosenkeller;
import de.srsoftware.cal.importer.jena.Kassablanca;
import java.security.NoSuchAlgorithmException;
/**
* Test application
@@ -14,9 +15,9 @@ public class Application {
* sandbox
* @param args default
*/
public static void main(String[] args) {
var rosenkeller = new Rosenkeller();
var appointments = rosenkeller.fetch();
appointments.forEach(System.err::println);
public static void main(String[] args) throws NoSuchAlgorithmException {
var importer = new Kassablanca();
var appointments = importer.fetch();
appointments.forEach(System.out::println);
}
}