ws.ament.hammock.jpa.DataSourceDelegateBean Maven / Gradle / Ivy
/*
* Copyright 2016 Hammock and its contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied.
*
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ws.ament.hammock.jpa;
import javax.enterprise.context.ApplicationScoped;
import javax.enterprise.context.spi.CreationalContext;
import javax.enterprise.inject.spi.Bean;
import javax.enterprise.inject.spi.InjectionPoint;
import javax.sql.DataSource;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.Set;
import java.util.function.Supplier;
import static java.util.Collections.emptySet;
import static java.util.Collections.singleton;
import static ws.ament.hammock.jpa.Database.DatabaseLiteral.database;
public class DataSourceDelegateBean implements Bean {
private final Supplier dataSourceSupplier;
private String name;
DataSourceDelegateBean(String name, Supplier supplier) {
this.name = name;
this.dataSourceSupplier = supplier;
}
@Override
public Class> getBeanClass() {
return DataSource.class;
}
@Override
public Set getInjectionPoints() {
return emptySet();
}
@Override
public boolean isNullable() {
return false;
}
@Override
public DataSource create(CreationalContext creationalContext) {
return dataSourceSupplier.get();
}
@Override
public void destroy(DataSource dataSource, CreationalContext creationalContext) {
}
@Override
public Set getTypes() {
return singleton(DataSource.class);
}
@Override
public Set getQualifiers() {
return singleton(database(name));
}
@Override
public Class extends Annotation> getScope() {
return ApplicationScoped.class;
}
@Override
public String getName() {
return null;
}
@Override
public Set> getStereotypes() {
return emptySet();
}
@Override
public boolean isAlternative() {
return false;
}
}