mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-18 05:25:50 +00:00
Update UserService.java
Signed-off-by: jeet041 <mahorjitendra@gmail.com>
This commit is contained in:
parent
c2a6520756
commit
9a3e4c308a
1 changed files with 8 additions and 5 deletions
|
@ -1,21 +1,24 @@
|
||||||
public class UserService {
|
public class UserService {
|
||||||
public String getUserName(int userId) {
|
public String getUserName(int userId) {
|
||||||
return "User" + userId;
|
return "[Feature] User: " + userId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isUserActive(int userId) {
|
public boolean isUserActive(int userId) {
|
||||||
return true;
|
System.out.println("Checking user activity in Feature branch");
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void updateUserStatus(int userId, boolean isActive) {
|
public void updateUserStatus(int userId, boolean isActive) {
|
||||||
// update logic here
|
System.out.println("Feature branch updating user status");
|
||||||
|
// Extra logic here
|
||||||
}
|
}
|
||||||
|
|
||||||
public void deleteUser(int userId) {
|
public void deleteUser(int userId) {
|
||||||
// deletion logic
|
System.out.println("Feature branch: deleting user " + userId);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void notifyUser(int userId, String message) {
|
public void notifyUser(int userId, String message) {
|
||||||
System.out.println("Sending message: " + message);
|
System.out.println("[Feature] Notifying user: " + message);
|
||||||
|
// Extra feature logic
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue