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

io.sirix.dagger.ResourceSessionScope Maven / Gradle / Ivy

package io.sirix.dagger;

import io.sirix.api.ResourceSession;

import javax.inject.Scope;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * The scope declaration for all the instances that should exist only once in the context of a {@link ResourceSession}.
 *
 * @author Joao Sousa
 */
@Scope
@Documented
@Retention(RUNTIME)
public @interface ResourceSessionScope {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy