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
ba585032
Commit
ba585032
authored
Aug 29, 2019
by
Jan Hrabal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lds
parent
15d5a544
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
63 additions
and
0 deletions
+63
-0
LegalDocument.java
src/main/java/com/jh/boot/security/model/LegalDocument.java
+49
-0
LegalDocumentRepository.java
.../jh/boot/security/repository/LegalDocumentRepository.java
+8
-0
LegalDocumentService.java
...va/com/jh/boot/security/service/LegalDocumentService.java
+6
-0
No files found.
src/main/java/com/jh/boot/security/model/LegalDocument.java
0 → 100644
View file @
ba585032
package
com
.
jh
.
boot
.
security
.
model
;
import
com.jh.boot.jpa.AbstractIdEntity
;
public
class
LegalDocument
extends
AbstractIdEntity
{
private
static
final
long
serialVersionUID
=
1L
;
private
String
code
;
private
String
locale
;
private
String
text
;
public
LegalDocument
()
{
}
public
LegalDocument
(
String
code
,
String
locale
,
String
text
)
{
super
();
this
.
code
=
code
;
this
.
locale
=
locale
;
this
.
text
=
text
;
}
public
String
getCode
()
{
return
code
;
}
public
void
setCode
(
String
code
)
{
this
.
code
=
code
;
}
public
String
getLocale
()
{
return
locale
;
}
public
void
setLocale
(
String
locale
)
{
this
.
locale
=
locale
;
}
public
String
getText
()
{
return
text
;
}
public
void
setText
(
String
text
)
{
this
.
text
=
text
;
}
}
src/main/java/com/jh/boot/security/repository/LegalDocumentRepository.java
0 → 100644
View file @
ba585032
package
com
.
jh
.
boot
.
security
.
repository
;
import
com.jh.boot.jpa.AbstractHibernateRepository
;
public
class
LegalDocumentRepository
extends
AbstractHibernateRepository
{
}
src/main/java/com/jh/boot/security/service/LegalDocumentService.java
0 → 100644
View file @
ba585032
package
com
.
jh
.
boot
.
security
.
service
;
public
class
LegalDocumentService
{
}
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