
org.proxy4j.core.ProxyLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proxy4j-core Show documentation
Show all versions of proxy4j-core Show documentation
Core functionality for the Proxy4J framework
package org.proxy4j.core;
import javax.inject.Qualifier;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Qualifying annotation used to inject the proxy {@link ClassLoader}
* into the {@link ProxyFactory}.
* @author Brennan Spies
*/
@Qualifier
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface ProxyLoader {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy