| | |
| | | import java.io.IOException;
|
| | | import java.text.MessageFormat;
|
| | |
|
| | | import com.google.inject.Inject;
|
| | | import com.google.inject.Singleton;
|
| | | import javax.servlet.FilterChain;
|
| | | import javax.servlet.ServletException;
|
| | | import javax.servlet.ServletRequest;
|
| | |
| | | * @author James Moger
|
| | | *
|
| | | */
|
| | | @Singleton
|
| | | public class SyndicationFilter extends AuthenticationFilter {
|
| | |
|
| | | private final IRuntimeManager runtimeManager;
|
| | | private final IRepositoryManager repositoryManager;
|
| | | private final IProjectManager projectManager;
|
| | | private IRuntimeManager runtimeManager;
|
| | | private IRepositoryManager repositoryManager;
|
| | | private IProjectManager projectManager;
|
| | |
|
| | | @Inject
|
| | | public SyndicationFilter(
|
| | | IRuntimeManager runtimeManager,
|
| | | IAuthenticationManager authenticationManager,
|
| | | IRepositoryManager repositoryManager,
|
| | | IProjectManager projectManager) {
|
| | |
|
| | | super(authenticationManager);
|
| | |
|
| | | this.runtimeManager = runtimeManager;
|
| | | this.repositoryManager = repositoryManager;
|
| | | this.projectManager = projectManager;
|