System.java attribute api_key added with getter and setter methods

api_setup
Selim Eser 2024-06-08 15:44:40 +02:00
parent 9532505d38
commit e52088663b
1 changed files with 9 additions and 0 deletions

View File

@ -6,6 +6,15 @@ import java.util.TreeSet;
public class System {
private User current_user;
private String api_key;
public String getApi_key() {
return api_key;
}
public void setApi_key(String api_key) {
this.api_key = api_key;
}
public HashSet<User> get_all_user(){
return new HashSet<User>();