minor formatting cleanup
This commit is contained in:
@@ -3,10 +3,15 @@ package com.baeldung.sparkjava;
|
||||
import java.util.Collection;
|
||||
|
||||
public interface UserService {
|
||||
public void addUser (User user) ;
|
||||
public Collection<User> getUsers () ;
|
||||
public User getUser (String id) ;
|
||||
public User editUser (User user) throws UserException;
|
||||
public void deleteUser (String id) ;
|
||||
public boolean userExist (String id);
|
||||
public void addUser(User user);
|
||||
|
||||
public Collection<User> getUsers();
|
||||
|
||||
public User getUser(String id);
|
||||
|
||||
public User editUser(User user) throws UserException;
|
||||
|
||||
public void deleteUser(String id);
|
||||
|
||||
public boolean userExist(String id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user