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

com.jwebmp.plugins.imagemap.implementations.JQImageHeatMapExclusionsModule Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
package com.jwebmp.plugins.imagemap.implementations;

import com.guicedee.guicedinjection.interfaces.IGuiceScanJarExclusions;
import com.guicedee.guicedinjection.interfaces.IGuiceScanModuleExclusions;

import javax.validation.constraints.NotNull;
import java.util.HashSet;
import java.util.Set;

public class JQImageHeatMapExclusionsModule
		implements IGuiceScanModuleExclusions,
				           IGuiceScanJarExclusions
{

	@Override
	public @NotNull Set excludeJars()
	{
		Set strings = new HashSet<>();
		strings.add("jwebmp-image-map-heatmap-*");
		return strings;
	}

	@Override
	public @NotNull Set excludeModules()
	{
		Set strings = new HashSet<>();
		strings.add("com.jwebmp.plugins.imagemap");
		return strings;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy