io.kestra.repository.h2.H2ServiceInstanceRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdbc-h2 Show documentation
Show all versions of jdbc-h2 Show documentation
The modern, scalable orchestrator & scheduler open source platform
package io.kestra.repository.h2;
import io.kestra.core.server.ServiceInstance;
import io.kestra.jdbc.repository.AbstractJdbcServiceInstanceRepository;
import jakarta.inject.Inject;
import jakarta.inject.Named;
import jakarta.inject.Singleton;
@Singleton
@H2RepositoryEnabled
public class H2ServiceInstanceRepository extends AbstractJdbcServiceInstanceRepository {
@Inject
public H2ServiceInstanceRepository(@Named("serviceinstance") H2Repository repository) {
super(repository);
}
}