Advertisement
ItsAlexousd

DEV' PLUGIN DE BAN MySQL #03 - BanManager

Aug 17th, 2017
612
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.53 KB | None | 0 0
  1. package fr.itsalexousd.bansystem.bans;
  2.  
  3. import java.util.UUID;
  4.  
  5. public class BanManager {
  6.    
  7.     public void ban(UUID uuid, long end, String reason){
  8.        
  9.     }
  10.    
  11.     public void unban(UUID uuid){
  12.        
  13.     }
  14.    
  15.     public boolean isBanned(UUID uuid){
  16.        
  17.     }
  18.    
  19.     public void checkDuration(UUID uuid){
  20.        
  21.     }
  22.    
  23.     public long getEnd(UUID uuid){
  24.        
  25.     }
  26.    
  27.     public String getTimeLeft(UUID uuid){
  28.        
  29.     }
  30.    
  31.     public String getReason(UUID uuid){
  32.        
  33.     }
  34.  
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement