package mgmt.FibCommands; import mgmt.CommandBase; import mgmt.ControlParameters; /* * @Author: Wang Feng * @Description: FibDeleteCommand 表示删除前缀指定logic face命令 * @Version: 1.0.0 * @Date: 20:33 2021/4/27 * @Copyright: MIN-Group;国家重大科技基础设施——未来网络北大实验室;深圳市信息论与未来网络重点实验室 */ public class FibDeleteCommand extends CommandBase { /** * CreateFibDeleteCommand 创建一个 FibDeleteCommand 命令 * @param topPrefix * @param parameters * @return */ public static FibDeleteCommand createFibDeleteCommand(String topPrefix, ControlParameters parameters){ FibDeleteCommand command=new FibDeleteCommand(); command.setTopPrefix(topPrefix); command.setModuleName(ManagementModuleFibMgmt); command.setAction(FibCommands.FibManagementActionDel); command.setParameters(parameters); return command; } }