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

org.jnosql.artemis.arangodb.document.ArangoDBRepositoryAsyncBean Maven / Gradle / Ivy

The newest version!
/*
 *  Copyright (c) 2017 Otávio Santana and others
 *   All rights reserved. This program and the accompanying materials
 *   are made available under the terms of the Eclipse Public License v1.0
 *   and Apache License v2.0 which accompanies this distribution.
 *   The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 *   and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php.
 *
 *   You may elect to redistribute this code under either of these licenses.
 *
 *   Contributors:
 *
 *   Otavio Santana
 */
package org.jnosql.artemis.arangodb.document;

import org.jnosql.artemis.RepositoryAsync;
import org.jnosql.artemis.document.DocumentRepositoryAsyncProducer;
import org.jnosql.artemis.spi.AbstractBean;

import javax.enterprise.context.spi.CreationalContext;
import javax.enterprise.inject.Default;
import javax.enterprise.inject.spi.BeanManager;
import javax.enterprise.util.AnnotationLiteral;
import java.lang.annotation.Annotation;
import java.lang.reflect.Proxy;
import java.lang.reflect.Type;
import java.util.Collections;
import java.util.Set;


class ArangoDBRepositoryAsyncBean extends AbstractBean {

    private final Class type;

    private final Set types;

    private final Set qualifiers = Collections.singleton(new AnnotationLiteral() {
    });

    ArangoDBRepositoryAsyncBean(Class type, BeanManager beanManager) {
        super(beanManager);
        this.type = type;
        this.types = Collections.singleton(type);
    }

    @Override
    public Class getBeanClass() {
        return type;
    }


    @Override
    public ArangoDBRepositoryAsync create(CreationalContext creationalContext) {
        ArangoDBTemplateAsync templateAsync = getInstance(ArangoDBTemplateAsync.class);
        DocumentRepositoryAsyncProducer producer = getInstance(DocumentRepositoryAsyncProducer.class);
        RepositoryAsync repositoryAsync = producer.get((Class>) type, templateAsync);
        ArangoDBRepositoryAsyncProxy handler = new ArangoDBRepositoryAsyncProxy(templateAsync, repositoryAsync);
        return (ArangoDBRepositoryAsync) Proxy.newProxyInstance(type.getClassLoader(),
                new Class[]{type},
                handler);
    }


    @Override
    public Set getTypes() {
        return types;
    }

    @Override
    public Set getQualifiers() {
        return qualifiers;
    }

    @Override
    public String getId() {
        return type.getName() + "Async@arangodb";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy