Enum CordaDb
-
- All Implemented Interfaces:
public enum CordaDb
Corda database types.
persistenceUnitName
also used as ID for the connection in the db_connections table where that is applicable. Not all database types will have such a row with a fixed connection name because they might be defining entities available under multiple schemas named dynamically at run time. Likewise, a database type might have no entities defined under it, where the connection is only used to administer other schemas.
-
-
Field Summary
Fields Modifier and Type Field Description public final String
persistenceUnitName
-
Enum Constant Summary
Enum Constants Enum Constant Description CordaCluster
RBAC
Uniqueness
Vault
Crypto
VirtualNodes
-
Method Summary
-
-
Method Detail
-
values
static Array<CordaDb> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
-
valueOf
static CordaDb valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
getPersistenceUnitName
@NotNull() String getPersistenceUnitName()
-
-
-
-