Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jh-boot
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jan Hrabal
jh-boot
Commits
3900a6b3
Commit
3900a6b3
authored
Aug 25, 2019
by
Jan Hrabal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge
parent
f53f7c16
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
1 deletion
+21
-1
pom.xml
pom.xml
+1
-1
Signup.java
src/main/java/com/jh/boot/security/api/Signup.java
+20
-0
No files found.
pom.xml
View file @
3900a6b3
...
...
@@ -186,7 +186,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.8.0
</version>
<version>
3.8.0
</version>
<!--$NO-MVN-MAN-VER$-->
<configuration>
<release>
${java.version}
</release>
<source>
${java.version}
</source>
...
...
src/main/java/com/jh/boot/security/api/Signup.java
View file @
3900a6b3
...
...
@@ -6,6 +6,10 @@ public class Signup {
private
String
password
;
private
Boolean
terms
;
private
Boolean
privacy
;
public
Signup
()
{
super
();
}
...
...
@@ -32,4 +36,20 @@ public class Signup {
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
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment