allow import during registration

This commit is contained in:
Athou
2013-04-10 16:36:44 +02:00
parent 64762a89e8
commit edfafeb7b0
8 changed files with 73 additions and 14 deletions

View File

@@ -8,6 +8,7 @@ public class RegistrationRequest implements Serializable {
private String name;
private String password;
private String email;
private boolean googleImport = true;
public String getName() {
return name;
@@ -33,4 +34,12 @@ public class RegistrationRequest implements Serializable {
this.email = email;
}
public boolean isGoogleImport() {
return googleImport;
}
public void setGoogleImport(boolean googleImport) {
this.googleImport = googleImport;
}
}