All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bukkit.craftbukkit.command.ServerCommandSender Maven / Gradle / Ivy

package org.bukkit.craftbukkit.command;

import org.bukkit.Bukkit;
import org.bukkit.Server;
import org.bukkit.command.CommandSender;
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;

import java.util.Set;

public abstract class ServerCommandSender implements CommandSender {
  private static PermissibleBase blockPermInst;
  private final PermissibleBase perm;

  public ServerCommandSender() {
    if (this instanceof CraftBlockCommandSender) {
      if (blockPermInst == null) {
        blockPermInst = new PermissibleBase(this);
      }
      this.perm = blockPermInst;
    } else {
      this.perm = new PermissibleBase(this);
    }
  }

  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 boolean isPlayer() {
    return false;
  }

  public Server getServer() {
    return Bukkit.getServer();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy