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
739 B
23 lines
739 B
3 years ago
|
package com.fr.plugin.sso.config.simple;
|
||
|
|
||
|
import com.fr.decision.fun.impl.AbstractEmbedRequestFilterProvider;
|
||
|
import com.fr.plugin.sso.config.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 {
|
||
|
|
||
|
}
|
||
|
}
|