Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Samuel Dudík
PA165 Winery Management System
Commits
a313701d
Commit
a313701d
authored
Apr 23, 2022
by
Samuel Dudík
Browse files
Add missing @author in javadocs
parent
19bd8fc4
Pipeline
#131516
passed with stages
in 2 minutes and 1 second
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
winery/service/src/main/java/cz/muni/fi/pa165/winery/services/mappers/user/UserEntityMapper.java
View file @
a313701d
...
...
@@ -6,6 +6,10 @@ import cz.muni.fi.pa165.winery.services.mappers.EntityMapperImpl;
import
org.modelmapper.ModelMapper
;
import
org.springframework.stereotype.Service
;
/**
* @author Samuel Dudík
*/
@Service
public
class
UserEntityMapper
extends
EntityMapperImpl
<
UserDto
,
User
>
{
public
UserEntityMapper
()
{
...
...
winery/service/src/main/java/cz/muni/fi/pa165/winery/services/mappers/user/UserRoleEntityMapper.java
View file @
a313701d
...
...
@@ -6,6 +6,10 @@ import cz.muni.fi.pa165.winery.services.mappers.EntityMapperImpl;
import
org.modelmapper.ModelMapper
;
import
org.springframework.stereotype.Service
;
/**
* @author Samuel Dudík
*/
@Service
public
class
UserRoleEntityMapper
extends
EntityMapperImpl
<
UserRoleDto
,
UserRole
>
{
public
UserRoleEntityMapper
()
{
...
...
winery/service/src/main/java/cz/muni/fi/pa165/winery/services/user/UserRoleServiceImpl.java
View file @
a313701d
...
...
@@ -11,6 +11,10 @@ import org.springframework.stereotype.Service;
import
java.util.List
;
import
java.util.stream.Collectors
;
/**
* @author Samuel Dudík
*/
@Service
public
class
UserRoleServiceImpl
extends
PersistenceServiceImpl
<
UserRoleDto
,
UserRole
>
implements
UserRoleService
{
@Autowired
...
...
winery/service/src/main/java/cz/muni/fi/pa165/winery/services/user/UserServiceImpl.java
View file @
a313701d
...
...
@@ -12,6 +12,10 @@ import org.springframework.stereotype.Service;
import
java.util.List
;
import
java.util.stream.Collectors
;
/**
* @author Samuel Dudík
*/
@Service
public
class
UserServiceImpl
extends
PersistenceServiceImpl
<
UserDto
,
User
>
implements
UserService
{
@Autowired
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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