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

jodd.petite.meta.PetiteProvider Maven / Gradle / Ivy

Go to download

Jodd Petite is slick and lightweight DI container that uses annotations and supports sufficient most of features offered by other containers.

There is a newer version: 6.0.2
Show newest version
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.

package jodd.petite.meta;

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;

/**
 * Marker for Petite providers.
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface PetiteProvider {

	/**
	 * Defines provider name that will be used to
	 * provide instance to inject.
	 */
	String value() default "";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy