Package org.apereo.cas.config
Class JpaWebAuthnConfiguration
- java.lang.Object
-
- org.apereo.cas.config.JpaWebAuthnConfiguration
-
@Configuration("JpaWebAuthnConfiguration") @EnableConfigurationProperties(org.apereo.cas.configuration.CasConfigurationProperties.class) public class JpaWebAuthnConfiguration extends java.lang.ObjectThis isJpaWebAuthnConfiguration.- Since:
- 6.3.0
-
-
Constructor Summary
Constructors Constructor Description JpaWebAuthnConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.sql.DataSourcedataSourceWebAuthn()java.util.Set<java.lang.String>jpaWebAuthnPackagesToScan()org.springframework.orm.jpa.JpaVendorAdapterjpaWebAuthnVendorAdapter()org.springframework.transaction.PlatformTransactionManagertransactionManagerWebAuthn(javax.persistence.EntityManagerFactory emf)org.apereo.cas.webauthn.storage.WebAuthnCredentialRepositorywebAuthnCredentialRepository(org.springframework.transaction.PlatformTransactionManager transactionManager)org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBeanwebAuthnEntityManagerFactory()
-
-
-
Method Detail
-
jpaWebAuthnVendorAdapter
@RefreshScope @Bean public org.springframework.orm.jpa.JpaVendorAdapter jpaWebAuthnVendorAdapter()
-
dataSourceWebAuthn
@Bean @ConditionalOnMissingBean(name="dataSourceWebAuthn") @RefreshScope public javax.sql.DataSource dataSourceWebAuthn()
-
jpaWebAuthnPackagesToScan
@Bean public java.util.Set<java.lang.String> jpaWebAuthnPackagesToScan()
-
webAuthnEntityManagerFactory
@Lazy @Bean @ConditionalOnMissingBean(name="webAuthnEntityManagerFactory") public org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean webAuthnEntityManagerFactory()
-
transactionManagerWebAuthn
@Autowired @Bean public org.springframework.transaction.PlatformTransactionManager transactionManagerWebAuthn(@Qualifier("webAuthnEntityManagerFactory") javax.persistence.EntityManagerFactory emf)
-
webAuthnCredentialRepository
@RefreshScope @Bean public org.apereo.cas.webauthn.storage.WebAuthnCredentialRepository webAuthnCredentialRepository(@Qualifier("transactionManagerWebAuthn") org.springframework.transaction.PlatformTransactionManager transactionManager)
-
-