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

com.peterphi.std.guice.apploader.impl.GuiceRegistryModule Maven / Gradle / Ivy

package com.peterphi.std.guice.apploader.impl;

import com.google.inject.AbstractModule;

class GuiceRegistryModule extends AbstractModule
{
	private final GuiceRegistry registry;


	public GuiceRegistryModule(final GuiceRegistry registry)
	{
		this.registry = registry;
	}


	@Override
	protected void configure()
	{
		bind(GuiceRegistry.class).toInstance(registry);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy