From b0481cb922aefef53940cb22815d664d4af2c678 Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Wed, 7 Dec 2011 16:43:56 +1100 Subject: [PATCH] BREAKING: Change ConsoleCommandSender to an interface. Implementations will now need to implement the console command sender. This is done to increse the separation between the Bukkit API and it's implementations. This allows the implementations more freedom when dealing with consoles and reducing chances for breaking plugin compatibility in the future. By: Andrew Ardill --- .../bukkit/command/ConsoleCommandSender.java | 88 +------------------ 1 file changed, 1 insertion(+), 87 deletions(-) diff --git a/paper-api/src/main/java/org/bukkit/command/ConsoleCommandSender.java b/paper-api/src/main/java/org/bukkit/command/ConsoleCommandSender.java index 6c59c1b465..a74df60a1f 100644 --- a/paper-api/src/main/java/org/bukkit/command/ConsoleCommandSender.java +++ b/paper-api/src/main/java/org/bukkit/command/ConsoleCommandSender.java @@ -1,90 +1,4 @@ package org.bukkit.command; -import java.util.Set; -import org.bukkit.ChatColor; -import org.bukkit.Server; -import org.bukkit.permissions.PermissibleBase; -import org.bukkit.permissions.Permission; -import org.bukkit.permissions.PermissionAttachment; -import org.bukkit.permissions.PermissionAttachmentInfo; -import org.bukkit.plugin.Plugin; - -/** - * Represents CLI input from a console - */ -public class ConsoleCommandSender implements CommandSender { - private final Server server; - private final PermissibleBase perm = new PermissibleBase(this); - - protected ConsoleCommandSender(Server server) { - this.server = server; - } - - public void sendMessage(String message) { - System.out.println(ChatColor.stripColor(message)); - } - - public boolean isOp() { - return true; - } - - public void setOp(boolean value) { - throw new UnsupportedOperationException("Cannot change operator status of server console"); - } - - public boolean isPlayer() { - return false; - } - - public Server getServer() { - return server; - } - - public boolean isPermissionSet(String name) { - return perm.isPermissionSet(name); - } - - public boolean isPermissionSet(Permission perm) { - return this.perm.isPermissionSet(perm); - } - - public boolean hasPermission(String name) { - return perm.hasPermission(name); - } - - public boolean hasPermission(Permission perm) { - return this.perm.hasPermission(perm); - } - - public PermissionAttachment addAttachment(Plugin plugin, String name, boolean value) { - return perm.addAttachment(plugin, name, value); - } - - public PermissionAttachment addAttachment(Plugin plugin) { - return perm.addAttachment(plugin); - } - - public PermissionAttachment addAttachment(Plugin plugin, String name, boolean value, int ticks) { - return perm.addAttachment(plugin, name, value, ticks); - } - - public PermissionAttachment addAttachment(Plugin plugin, int ticks) { - return perm.addAttachment(plugin, ticks); - } - - public void removeAttachment(PermissionAttachment attachment) { - perm.removeAttachment(attachment); - } - - public void recalculatePermissions() { - perm.recalculatePermissions(); - } - - public Set getEffectivePermissions() { - return perm.getEffectivePermissions(); - } - - public String getName() { - return "CONSOLE"; - } +public interface ConsoleCommandSender extends CommandSender{ }