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

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

There is a newer version: 1.2.6
Show newest version
package com.oath.micro.server.general.exception.mapper;

import java.util.Set;


import com.oath.micro.server.Plugin;
import cyclops.reactive.collections.mutable.SetX;

/**
 * 
 * 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 Set jaxRsPackages() {
		return SetX.of("com.oath.micro.server.general.exception.mapper");
		
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy