-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserInt.java
More file actions
26 lines (25 loc) · 720 Bytes
/
Copy pathUserInt.java
File metadata and controls
26 lines (25 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import java.util.*;
/**
* Team Project -- UserInt
*
* This is the interface for User.java
* @author William Boulton, Mukund Venkatesh
* @version November 1, 2024
*
*/
public interface UserInt {
boolean addFriend(String user);
boolean removeFriend(String user);
boolean blockUser(String user);
boolean unblockUser(String user);
String getUsername();
boolean verifyLogin(String password);
boolean equals(User user);
String toString();
byte[] getProfilePicture();
void changeUsername(String newUsername);
void changePassword(String newPassword);
String stringListToString(ArrayList<String> list);
boolean isAllowAll();
void setAllowAll(boolean newBoolean);
}