public EditStudentForm(String id) {
super(id);
// A somewhat ugly validator to ensure that no two students in the same period have the same full name.
add(new UniqueUserInPeriodValidator() {
private static final long serialVersionUID = 1L;
@Override
public FormComponent<String> getFirstNameComponent() {