001 package org.bukkit.permissions; 002 003 /** 004 * Represents a class which is to be notified when a {@link 005 * PermissionAttachment} is removed from a {@link Permissible} 006 */ 007 public interface PermissionRemovedExecutor { 008 009 /** 010 * Called when a {@link PermissionAttachment} is removed from a {@link 011 * Permissible} 012 * 013 * @param attachment Attachment which was removed 014 */ 015 public void attachmentRemoved(PermissionAttachment attachment); 016 }