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

org.archive.spring.Required Maven / Gradle / Ivy

Go to download

The Archive Commons Code Libraries project contains general Java utility libraries, as used by the Heritrix crawler and other projects.

The newest version!
package org.archive.spring;

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

/**
 * Replacement for the removed Spring @Required annotation. Do not use this in new beans,
 * use constructor injection instead. This only exists to avoid breaking existing crawl profiles.
 */
@Deprecated
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Required {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy