Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
reg-app
Regapp
Commits
888eaeb8
Commit
888eaeb8
authored
Nov 14, 2016
by
michael.simon
Browse files
Issue #53
parent
221be976
Changes
1
Hide whitespace changes
Inline
Side-by-side
bwreg-service/src/main/java/edu/kit/scc/webreg/service/reg/impl/RegisterUserServiceImpl.java
View file @
888eaeb8
...
...
@@ -207,7 +207,7 @@ public class RegisterUserServiceImpl implements RegisterUserService {
}
}
protected
final
void
updateGroups
(
GroupPerServiceList
groupUpdateList
,
String
executor
)
throws
RegisterException
{
protected
void
updateGroups
(
GroupPerServiceList
groupUpdateList
,
String
executor
)
throws
RegisterException
{
for
(
ServiceEntity
service
:
groupUpdateList
.
getServices
())
{
RegisterUserWorkflow
workflow
=
getWorkflowInstance
(
service
.
getRegisterBean
());
...
...
@@ -299,7 +299,7 @@ public class RegisterUserServiceImpl implements RegisterUserService {
}
@Override
public
final
void
updateGroups
(
Set
<
GroupEntity
>
groupUpdateSet
,
String
executor
)
throws
RegisterException
{
public
void
updateGroups
(
Set
<
GroupEntity
>
groupUpdateSet
,
String
executor
)
throws
RegisterException
{
GroupPerServiceList
groupUpdateList
=
new
GroupPerServiceList
();
for
(
GroupEntity
group
:
groupUpdateSet
)
{
...
...
@@ -333,7 +333,7 @@ public class RegisterUserServiceImpl implements RegisterUserService {
}
@Override
public
final
void
deleteGroup
(
GroupEntity
group
,
ServiceEntity
service
,
String
executor
)
throws
RegisterException
{
public
void
deleteGroup
(
GroupEntity
group
,
ServiceEntity
service
,
String
executor
)
throws
RegisterException
{
group
=
groupDao
.
findWithUsers
(
group
.
getId
());
RegisterUserWorkflow
workflow
=
getWorkflowInstance
(
service
.
getRegisterBean
());
...
...
@@ -359,12 +359,12 @@ public class RegisterUserServiceImpl implements RegisterUserService {
}
@Override
public
final
void
reconsiliation
(
RegistryEntity
registry
,
Boolean
fullRecon
,
String
executor
)
throws
RegisterException
{
public
void
reconsiliation
(
RegistryEntity
registry
,
Boolean
fullRecon
,
String
executor
)
throws
RegisterException
{
reconsiliation
(
registry
,
fullRecon
,
executor
,
null
);
}
@Override
public
final
void
reconsiliation
(
RegistryEntity
registry
,
Boolean
fullRecon
,
String
executor
,
Auditor
parentAuditor
)
throws
RegisterException
{
public
void
reconsiliation
(
RegistryEntity
registry
,
Boolean
fullRecon
,
String
executor
,
Auditor
parentAuditor
)
throws
RegisterException
{
RegisterUserWorkflow
workflow
=
getWorkflowInstance
(
registry
.
getRegisterBean
());
...
...
@@ -441,7 +441,7 @@ public class RegisterUserServiceImpl implements RegisterUserService {
}
@Override
public
final
void
deregisterUser
(
RegistryEntity
registry
,
String
executor
)
throws
RegisterException
{
public
void
deregisterUser
(
RegistryEntity
registry
,
String
executor
)
throws
RegisterException
{
if
(
RegistryStatus
.
DELETED
.
equals
(
registry
.
getRegistryStatus
()))
{
throw
new
RegisterException
(
"Registry "
+
registry
.
getId
()
+
" is already deregistered!"
);
...
...
michael.simon
@simon
·
Jan 24, 2017
Author
Owner
Issue ist wrong. Correct issue is
#52 (closed)
Issue ist wrong. Correct issue is #52
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