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

org.zuchini.spring.ScenarioScoped Maven / Gradle / Ivy

The newest version!
package org.zuchini.spring;

import org.springframework.context.annotation.Scope;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Scope(ScenarioScoped.SCOPE_NAME)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
@Documented
public @interface ScenarioScoped {
    String SCOPE_NAME = "zuchini-scenario-scope";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy