Interface IDaoFactory
public interface IDaoFactory
Factory interface for creating DAO instances for the certificate management system. Provides methods to create DAOs
for certificate and keystore entities.
- Since:
- 8.5.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns a new instance of theICertificateEntityDaofor the specified transaction.Returns a new instance of theIKeyStoreEntityDaofor the specified transaction.
-
Method Details
-
createCertificateEntityDao
Returns a new instance of theICertificateEntityDaofor the specified transaction.- Parameters:
tx- the transaction to use for the DAO operations.- Returns:
- a new instance of
ICertificateEntityDao
-
createKeyStoreEntityDao
Returns a new instance of theIKeyStoreEntityDaofor the specified transaction.- Parameters:
tx- the transaction to use for the DAO operations.- Returns:
- a new instance of
IKeyStoreEntityDao
-