Search in sources :

Example 1 with ProxyMethod

use of io.vertigo.core.component.proxy.ProxyMethod in project vertigo by KleeGroup.

the class ComponentLoader method createProxyMethod.

private static ProxyMethod createProxyMethod(final Container container, final ProxyMethodConfig proxyMethodConfig) {
    // création de l'instance du composant
    final ProxyMethod proxyMethod = DIInjector.newInstance(proxyMethodConfig.getProxyMethodClass(), container);
    // ---
    Assertion.checkNotNull(proxyMethod.getAnnotationType());
    return proxyMethod;
}
Also used : ProxyMethod(io.vertigo.core.component.proxy.ProxyMethod)

Aggregations

ProxyMethod (io.vertigo.core.component.proxy.ProxyMethod)1