add db-table configuration (WIP)

This commit is contained in:
mbremer
2021-10-12 07:40:26 +02:00
parent 5388c0c974
commit 773e8470b0
8 changed files with 129 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
package de.mbremer.traffic;
import javax.ws.rs.FormParam;
public class TrafficAdminForm {
public @FormParam("googleapikey")
String googleApiKey;
public @FormParam("officeadress")
String officeAdress;
}