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

com.github.nill14.utils.init.api.IServiceContext Maven / Gradle / Ivy

package com.github.nill14.utils.init.api;

import java.util.Optional;

import com.github.nill14.utils.init.impl.GlobalServiceContext;

public interface IServiceContext {

	Optional> getInitializer();
	
	Optional getCustomResolver();
	
	
	public static IServiceContext global() {
		return GlobalServiceContext.instance();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy