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

com.aol.micro.server.general.exception.mapper.ExceptionMapperPlugin Maven / Gradle / Ivy

package com.aol.micro.server.general.exception.mapper;

import java.util.HashSet;
import java.util.Set;


import com.aol.micro.server.Plugin;
import cyclops.collections.immutable.PersistentSetX;

/**
 * 
 * Collections of Spring configuration classes (Classes annotated with @Configuration)
 * that configure various useful pieces of functionality - such as property file loading,
 * datasources, scheduling etc
 * 
 * @author johnmcclean
 *
 */
public class ExceptionMapperPlugin implements Plugin{

	@Override
	public PersistentSetX jaxRsPackages() {
		return PersistentSetX.of("com.aol.micro.server.general.exception.mapper");
		
	}

	@Override
	public PersistentSetX springClasses() {
		return PersistentSetX.of(MapOfExceptionsToErrorCodes.class);
	}
	
	
	
	
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy