You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
740 B
23 lines
740 B
package com.fr.plugin.login.bean.simple; |
|
|
|
import com.fr.decision.fun.impl.AbstractEmbedRequestFilterProvider; |
|
import com.fr.plugin.login.bean.simple.account.PluginSimpleConfig; |
|
|
|
import javax.servlet.FilterConfig; |
|
import javax.servlet.ServletException; |
|
import javax.servlet.http.HttpServletRequest; |
|
import javax.servlet.http.HttpServletResponse; |
|
import java.io.IOException; |
|
|
|
public class PluginInitializeFilterBridge extends AbstractEmbedRequestFilterProvider { |
|
|
|
@Override |
|
public void init(FilterConfig filterConfig) { |
|
PluginSimpleConfig.getInstance(); |
|
} |
|
|
|
@Override |
|
public void filter(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws IOException, ServletException { |
|
|
|
} |
|
}
|
|
|