Commit 3900a6b3 by Jan Hrabal

merge

parent f53f7c16
...@@ -186,7 +186,7 @@ ...@@ -186,7 +186,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version> <version>3.8.0</version><!--$NO-MVN-MAN-VER$-->
<configuration> <configuration>
<release>${java.version}</release> <release>${java.version}</release>
<source>${java.version}</source> <source>${java.version}</source>
......
...@@ -6,6 +6,10 @@ public class Signup { ...@@ -6,6 +6,10 @@ public class Signup {
private String password; private String password;
private Boolean terms;
private Boolean privacy;
public Signup() { public Signup() {
super(); super();
} }
...@@ -32,4 +36,20 @@ public class Signup { ...@@ -32,4 +36,20 @@ public class Signup {
this.password = password; this.password = password;
} }
public boolean isTerms() {
return terms;
}
public void setTerms(boolean terms) {
this.terms = terms;
}
public boolean isPrivacy() {
return privacy;
}
public void setPrivacy(boolean privacy) {
this.privacy = privacy;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment