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

com.jwebmp.plugins.bs4datetimedropdown.implementations.BSDateTimePickerExclusionsModule Maven / Gradle / Ivy

There is a newer version: 0.66.0.1
Show newest version
package com.jwebmp.plugins.bs4datetimedropdown.implementations;

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

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

public class BSDateTimePickerExclusionsModule
		implements IGuiceScanModuleExclusions,
				           IGuiceScanJarExclusions
{

	@Override
	public @NotNull Set excludeJars()
	{
		Set strings = new HashSet<>();
		strings.add("jwebmp-bootstrap-date-time-picker-*");
		return strings;
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy