mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-21 16:05:03 +00:00
21 lines
354 B
Java
21 lines
354 B
Java
package com.earth2me.essentials;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
|
public interface IPermissionsHandler
|
|
{
|
|
|
|
String getGroup(Player base);
|
|
|
|
boolean canBuild(Player base, String group);
|
|
|
|
boolean inGroup(Player base, String group);
|
|
|
|
boolean hasPermission(Player base, String node);
|
|
|
|
String getPrefix(Player base);
|
|
|
|
String getSuffix(Player base);
|
|
|
|
}
|