in library/src/main/java/org/apache/fineract/cn/anubis/repository/TenantAuthorizationDataRepository.java [266:284]
private void completeBoundStatement(
final @Nonnull BoundStatement boundStatement,
final @Nonnull String timestamp,
final boolean valid,
final @Nonnull BigInteger identityManagerPublicKeyModulus,
final @Nonnull BigInteger identityManagerPublicKeyExponent,
final @Nonnull BigInteger applicationPrivateKeyModulus,
final @Nonnull BigInteger applicationPrivateKeyExponent,
final @Nonnull BigInteger applicationPublicKeyModulus,
final @Nonnull BigInteger applicationPublicKeyExponent) {
boundStatement.setString(TIMESTAMP_COLUMN, timestamp);
boundStatement.setBool(VALID_COLUMN, valid);
boundStatement.setVarint(IDENTITY_MANAGER_PUBLIC_KEY_MOD_COLUMN, identityManagerPublicKeyModulus);
boundStatement.setVarint(IDENTITY_MANAGER_PUBLIC_KEY_EXP_COLUMN, identityManagerPublicKeyExponent);
boundStatement.setVarint(APPLICATION_PRIVATE_KEY_MOD_COLUMN, applicationPrivateKeyModulus);
boundStatement.setVarint(APPLICATION_PRIVATE_KEY_EXP_COLUMN, applicationPrivateKeyExponent);
boundStatement.setVarint(APPLICATION_PUBLIC_KEY_MOD_COLUMN, applicationPublicKeyModulus);
boundStatement.setVarint(APPLICATION_PUBLIC_KEY_EXP_COLUMN, applicationPublicKeyExponent);
}