blob: ee0de8a75147f110ff5f95df91f5126ced533322 [file] [log] [blame]
package org.apache.fineract.injection;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import javax.inject.Scope;
/**
* A scoping annotation to permit objects whose lifetime should
* conform to the life of the Activity to be memorised in the
* correct component.
*/
@Scope
@Retention(RetentionPolicy.RUNTIME)
public @interface PerActivity {
}