com.github.yoojia.halo.HaloChain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of halo-core Show documentation
Show all versions of halo-core Show documentation
A FAST && THIN && HIGH SCALABLE Java web framework
package com.github.yoojia.halo;
/**
* @author YOOJIA.CHEN ([email protected])
*/
public abstract class HaloChain {
/**
* 禁止传递到一下个模块或处理器
*/
private boolean mNextDisabled = true;
public HaloChain() {
}
/**
* 允许请求继续传递给其它处理器或者模块。
*/
public void forward(){
mNextDisabled = false;
}
/**
* 拦截请求,使请求终止传递。
*/
public void intercept(){
mNextDisabled = true;
}
/**
* PROTECTED: for hide this method
*/
protected boolean isNextDisabled(){
return mNextDisabled;
}
}