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

com.bell.mf.support.interceptor.ExecutionChain Maven / Gradle / Ivy

There is a newer version: 1.6.3.RELEASE
Show newest version
package com.bell.mf.support.interceptor;

import java.util.List;

import com.bell.mf.handler.MessageFrameRequest;

/**
 * ExecutionChain接口,定义方法拦截器执行
 * @author bell.zhouxiaobing
 * @since 1.3
 */
public interface ExecutionChain {

	// 全局拦截器
	List getInterceptors();

	// 指令码拦截器
	List getCommandCodeInterceptors(String commandCode);

	boolean addInterceptor(MessageFrameHandlerInterceptor interceptor);
	
	void applyPreHandle(MessageFrameRequest request);
	
	void applyPostHandle(MessageFrameRequest request);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy