Module io.github.mmm.crypto
Package io.github.mmm.crypto.crypt
Interface AbstractGetCryptorFactory<C extends CryptorFactory>
-
- Type Parameters:
C
- the type of theCryptorFactory
.
public interface AbstractGetCryptorFactory<C extends CryptorFactory>
Abstract interface toget
theCryptorFactory
.- Since:
- 1.0.0
- Author:
- Joerg Hohwiller (hohwille at users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description C
getCryptorFactory()
default C
getCryptorFactoryRequired()
-
-
-
Method Detail
-
getCryptorFactory
C getCryptorFactory()
- Returns:
- the
CryptorFactory
.
-
getCryptorFactoryRequired
default C getCryptorFactoryRequired()
- Returns:
- the
CryptorFactory
. Nevernull
. - Throws:
IllegalStateException
- ifgetCryptorFactory()
isnull
.
-
-