RequestParameterAccessor to allow simple access to Parameters in PrimitiveRequest #208

Merged
lars.winzer merged 7 commits from feat/21-requestparameteraccessor into main 2026-03-30 13:22:38 +02:00
Showing only changes of commit 160ec55957 - Show all commits
@@ -0,0 +1,6 @@
package ch.unibas.dmi.dbis.cs108.casono.server.network.parser;
@FunctionalInterface
interface ThrowingParser<T> {
T parse(String value) throws Exception;
}