toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final authenticationType = this.authenticationType;
  final connectionFactory = this.connectionFactory;
  final connectionUrl = this.connectionUrl;
  final jndiConnectionFactory = this.jndiConnectionFactory;
  final jndiInitialContextFactory = this.jndiInitialContextFactory;
  final jndiProviderUrl = this.jndiProviderUrl;
  final jndiSecurityCredentialsSecret = this.jndiSecurityCredentialsSecret;
  final jndiSecurityPrincipal = this.jndiSecurityPrincipal;
  final keyStoreFile = this.keyStoreFile;
  final keyStorePassword = this.keyStorePassword;
  final keyStorePasswordSecretVersion = this.keyStorePasswordSecretVersion;
  final password = this.password;
  final passwordSecretVersion = this.passwordSecretVersion;
  final securityProtocol = this.securityProtocol;
  final sslKeyPassword = this.sslKeyPassword;
  final sslKeyPasswordSecretVersion = this.sslKeyPasswordSecretVersion;
  final technologyType = this.technologyType;
  final trustStoreFile = this.trustStoreFile;
  final trustStorePassword = this.trustStorePassword;
  final trustStorePasswordSecretVersion =
      this.trustStorePasswordSecretVersion;
  final useJndi = this.useJndi;
  final username = this.username;
  return {
    'authenticationType': ?authenticationType,
    'connectionFactory': ?connectionFactory,
    'connectionUrl': ?connectionUrl,
    'jndiConnectionFactory': ?jndiConnectionFactory,
    'jndiInitialContextFactory': ?jndiInitialContextFactory,
    'jndiProviderUrl': ?jndiProviderUrl,
    'jndiSecurityCredentialsSecret': ?jndiSecurityCredentialsSecret,
    'jndiSecurityPrincipal': ?jndiSecurityPrincipal,
    'keyStoreFile': ?keyStoreFile,
    'keyStorePassword': ?keyStorePassword,
    'keyStorePasswordSecretVersion': ?keyStorePasswordSecretVersion,
    'password': ?password,
    'passwordSecretVersion': ?passwordSecretVersion,
    'securityProtocol': ?securityProtocol,
    'sslKeyPassword': ?sslKeyPassword,
    'sslKeyPasswordSecretVersion': ?sslKeyPasswordSecretVersion,
    'technologyType': ?technologyType,
    'trustStoreFile': ?trustStoreFile,
    'trustStorePassword': ?trustStorePassword,
    'trustStorePasswordSecretVersion': ?trustStorePasswordSecretVersion,
    'useJndi': ?useJndi,
    'username': ?username,
  };
}