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])
*/
@Deprecated // Use HaloStep
public abstract class HaloChain extends HaloStep {
protected HaloChain(boolean defaultForward) {
super(defaultForward);
}
/**
* 拦截请求,使请求终止传递。
*/
public void intercept(){
super.stop();
}
}