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

com.firefly.example.ioc.ProxyChain Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.example.ioc;

import com.firefly.annotation.Proxy;

import java.lang.annotation.*;

/**
 * @author Pengtao Qiu
 */
@Proxy(proxyClass = LogProxy.class)
@Proxy(proxyClass = AuthenticationProxy.class)
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ProxyChain {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy