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

io.github.robothy.sdwebui.sdk.SdWebuiBeanContainer Maven / Gradle / Ivy

The newest version!
package io.github.robothy.sdwebui.sdk;

import io.github.robothy.sdwebui.sdk.models.SdWebuiOptions;
import io.github.robothy.sdwebui.sdk.services.DefaultSdWebuiBeanContainer;

public interface SdWebuiBeanContainer {

  static SdWebuiBeanContainer create(SdWebuiOptions options) {
    return new DefaultSdWebuiBeanContainer(options);
  }

   T getBean(Class serviceClass);

  void register(Class serviceClass, Object service);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy