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

io.descoped.dc.api.services.Services Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package io.descoped.dc.api.services;

import java.util.Map;

public interface Services {
     boolean contains(Class clazz);

     R get(Class clazz);

    Map, Object> asMap();

     Services register(Class clazz, Object instance);

    static Services create() {
        return new InjectionParameters();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy