Search in sources :

Example 1 with ColumnTemplateAsync

use of org.jnosql.artemis.column.ColumnTemplateAsync in project jnosql-artemis by eclipse.

the class RepositoryAsyncColumnBean method create.

@Override
public RepositoryAsync create(CreationalContext<RepositoryAsync> creationalContext) {
    ClassRepresentations classRepresentations = getInstance(ClassRepresentations.class);
    ColumnTemplateAsync repository = provider.isEmpty() ? getInstance(ColumnTemplateAsync.class) : getInstance(ColumnTemplateAsync.class, provider);
    Reflections reflections = getInstance(Reflections.class);
    Converters converters = getInstance(Converters.class);
    ColumnRepositoryAsyncProxy handler = new ColumnRepositoryAsyncProxy(repository, classRepresentations, type, reflections, converters);
    return (RepositoryAsync) Proxy.newProxyInstance(type.getClassLoader(), new Class[] { type }, handler);
}
Also used : Converters(org.jnosql.artemis.Converters) ClassRepresentations(org.jnosql.artemis.reflection.ClassRepresentations) ColumnTemplateAsync(org.jnosql.artemis.column.ColumnTemplateAsync) Reflections(org.jnosql.artemis.reflection.Reflections) RepositoryAsync(org.jnosql.artemis.RepositoryAsync)

Aggregations

Converters (org.jnosql.artemis.Converters)1 RepositoryAsync (org.jnosql.artemis.RepositoryAsync)1 ColumnTemplateAsync (org.jnosql.artemis.column.ColumnTemplateAsync)1 ClassRepresentations (org.jnosql.artemis.reflection.ClassRepresentations)1 Reflections (org.jnosql.artemis.reflection.Reflections)1