All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.extcos.internal.factory.FilterInterceptorsFactory Maven / Gradle / Ivy

package net.sf.extcos.internal.factory;

import java.util.LinkedHashSet;
import java.util.Set;

import net.sf.extcos.filter.FilterInterceptor;
import net.sf.extcos.internal.ThreadingFilterInterceptor;

public class FilterInterceptorsFactory {
	public static Set> buildFilterInterceptors() {
		Set> interceptors =
				new LinkedHashSet>();

		interceptors.add(ThreadingFilterInterceptor.class);

		return interceptors;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy