Skip to content

Commit

Permalink
code update
Browse files Browse the repository at this point in the history
  • Loading branch information
leemitra committed Sep 30, 2023
1 parent 195e12d commit 80f60e0
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ public class CustomUserGroupCallback implements UserGroupCallback {
//extends AbstractUserGroupInfo
@Override
public boolean existsUser(String userId) {
return true;// as per app requirement
}
return true;
// as per app requirement
}

@Override
public boolean existsGroup(String groupId) {
Expand All @@ -19,7 +20,7 @@ public boolean existsGroup(String groupId) {

@Override
public List<String> getGroupsForUser(String userId) {
List<String> gps = new ArrayList<String>();
List<String> gps = new ArrayList<>();
gps.add("MANAGER");
gps.add("CUSTOMER");
return gps;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package com.github.moneproject.controller;public class MainController {
}
10 changes: 10 additions & 0 deletions m-one-project/src/main/webapp/VIEWS/JSP/home.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home</title>
</head>
<body>
Hello World
</body>
</html>

This file was deleted.

0 comments on commit 80f60e0

Please sign in to comment.