Package de.saar.coli.arranger.web
Class AabaForm
- java.lang.Object
-
- de.saar.coli.arranger.web.AabaForm
-
- All Implemented Interfaces:
AutoCloseable
public class AabaForm extends Object implements AutoCloseable
The contents of the web form for the AABA web demo.
-
-
Constructor Summary
Constructors Constructor Description AabaForm()
-
Method Summary
Modifier and Type Method Description voidclose()Stringinput_abc()Returns the value of the input field.static AabaFormparse(io.javalin.http.Context ctx)Parses the POST parameters in the given context and returns an AabaForm object.voidsetInput_abc(String input_abc)Sets the input field to a new value.
-
-
-
Method Detail
-
parse
public static AabaForm parse(io.javalin.http.Context ctx) throws FormValidationException
Parses the POST parameters in the given context and returns an AabaForm object.- Parameters:
ctx-- Returns:
- Throws:
FormValidationException
-
input_abc
public String input_abc()
Returns the value of the input field.- Returns:
-
setInput_abc
public void setInput_abc(String input_abc)
Sets the input field to a new value.- Parameters:
input_abc-
-
close
public void close()
- Specified by:
closein interfaceAutoCloseable
-
-