Interface CouchbaseConnectionDetails

All Superinterfaces:
org.springframework.boot.autoconfigure.service.connection.ConnectionDetails

public interface CouchbaseConnectionDetails extends org.springframework.boot.autoconfigure.service.connection.ConnectionDetails
Details required to establish a connection to a Couchbase service.
Since:
4.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    Connection string used to locate the Couchbase cluster.
    @Nullable String
    Cluster password.
    default @Nullable org.springframework.boot.ssl.SslBundle
    SSL bundle to use.
    @Nullable String
    Cluster username.
  • Method Details

    • getConnectionString

      String getConnectionString()
      Connection string used to locate the Couchbase cluster.
      Returns:
      the connection string used to locate the Couchbase cluster
    • getUsername

      @Nullable String getUsername()
      Cluster username.
      Returns:
      the cluster username
    • getPassword

      @Nullable String getPassword()
      Cluster password.
      Returns:
      the cluster password
    • getSslBundle

      default @Nullable org.springframework.boot.ssl.SslBundle getSslBundle()
      SSL bundle to use.
      Returns:
      the SSL bundle to use