Create a new Component object that uses dynamic proxy to transform the return value 'this' Component creates to a dynamic proxy.
@param itfs the interfaces to proxy to.
@return the new Component object.
Proxies the specified {@code original} FilterChain with the named chain. The returned{@code FilterChain} instance will first execute the configured named chain and then lastly invoke the given{@code original} chain.
@param original the original FilterChain to proxy
@param chainName the name of the internal configured filter chain that should 'sit in front' of the specifiedoriginal chain.
@return a {@code FilterChain} instance that will execute the named chain and then finally thespecified {@code original} FilterChain instance.
@throws IllegalArgumentException if there is no configured chain with the given {@code chainName}.
Returns a new {@code FilterChain} instance that will first execute this list's {@code Filter}s (in list order) and end with the execution of the given {@code filterChain} instance.
@param filterChain the {@code FilterChain} instance to execute after this list's {@code Filter}s have executed.
@return a new {@code FilterChain} instance that will first execute this list's {@code Filter}s (in list order) and end with the execution of the given {@code filterChain} instance.
This will cause the isProxiable field of the returned descriptor to return true (it will force this descriptor to use proxies).
@return A DescriptorBuilder with the proxiable field set to true
Create a proxy for EntityManagerFactory.
@param factory initial factory to delegate method calls to.
@param info definition to cache for factory reload
@param properties properties to cache for factory reload
@return the proxy
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.