package ru.simsonic.rscPermissions.Bukkit; import org.bukkit.OfflinePlayer; import org.bukkit.World; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; import ru.simsonic.rscPermissions.API.BridgeForBukkitAPI; public class VaultPermission extends net.milkbowl.vault.permission.Permission { private final BridgeForBukkitAPI bridge; public VaultPermission(BridgeForBukkitAPI bridge) { this.bridge = bridge; } @Override public String getName() { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean isEnabled() { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean hasSuperPermsCompat() { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerHas(String world, String player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerAdd(String world, String player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerRemove(String world, String player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean groupHas(String world, String group, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean groupAdd(String world, String group, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean groupRemove(String world, String group, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerInGroup(String world, String player, String group) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerAddGroup(String world, String player, String group) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerRemoveGroup(String world, String player, String group) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public String[] getPlayerGroups(String world, String player) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public String getPrimaryGroup(String world, String player) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public String[] getGroups() { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean hasGroupSupport() { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean has(CommandSender sender, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean has(Player player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerHas(String world, OfflinePlayer player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerHas(Player player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerAdd(String world, OfflinePlayer player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerAdd(Player player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerAddTransient(OfflinePlayer player, String permission) throws UnsupportedOperationException { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerAddTransient(Player player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerAddTransient(String worldName, OfflinePlayer player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerAddTransient(String worldName, Player player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerRemoveTransient(String worldName, OfflinePlayer player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerRemoveTransient(String worldName, Player player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerRemove(String world, OfflinePlayer player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerRemove(World world, String player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerRemove(Player player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerRemoveTransient(OfflinePlayer player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerRemoveTransient(Player player, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean groupHas(World world, String group, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean groupAdd(World world, String group, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean groupRemove(World world, String group, String permission) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerInGroup(String world, OfflinePlayer player, String group) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerInGroup(Player player, String group) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerAddGroup(String world, OfflinePlayer player, String group) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerAddGroup(Player player, String group) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerRemoveGroup(String world, OfflinePlayer player, String group) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public boolean playerRemoveGroup(Player player, String group) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public String[] getPlayerGroups(String world, OfflinePlayer player) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public String[] getPlayerGroups(Player player) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public String getPrimaryGroup(String world, OfflinePlayer player) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } @Override public String getPrimaryGroup(Player player) { throw new UnsupportedOperationException("This method is still unsupported. Sorry."); } }