Package com.mongodb

Class MongoClientOptions.Builder

  • Enclosing class:
    MongoClientOptions

    @NotThreadSafe
    @Deprecated(since="2021-05-27")
    public static class MongoClientOptions.Builder
    extends java.lang.Object
    Deprecated.
    Usage of this API is not supported in AEM as a Cloud Service.
    A builder for MongoClientOptions so that MongoClientOptions can be immutable, and to support easier construction through chaining.
    Since:
    2.10.0
    • Constructor Detail

      • Builder

        public Builder()
        Deprecated.
        Creates a Builder for MongoClientOptions, getting the appropriate system properties for initialization.
      • Builder

        public Builder​(MongoClientOptions options)
        Deprecated.
        Creates a Builder from an existing MongoClientOptions.
        Parameters:
        options - create a builder from existing options
    • Method Detail

      • applicationName

        public MongoClientOptions.Builder applicationName​(java.lang.String applicationName)
        Deprecated.
        Sets the logical name of the application using this MongoClient. The application name may be used by the client to identify the application to the server, for use in server logs, slow query logs, and profile collection.
        Parameters:
        applicationName - the logical name of the application using this MongoClient. It may be null. The UTF-8 encoding may not exceed 128 bytes.
        Returns:
        this
        Since:
        3.4
        See Also:
        MongoClientOptions.getApplicationName()
      • compressorList

        public MongoClientOptions.Builder compressorList​(java.util.List<MongoCompressor> compressorList)
        Deprecated.
        Sets the compressors to use for compressing messages to the server. The driver will use the first compressor in the list that the server is configured to support.
        Parameters:
        compressorList - the list of compressors to request
        Returns:
        this
        Since:
        3.6
        See Also:
        MongoClientOptions.getCompressorList()
      • minConnectionsPerHost

        public MongoClientOptions.Builder minConnectionsPerHost​(int minConnectionsPerHost)
        Deprecated.
        Sets the minimum number of connections per host.
        Parameters:
        minConnectionsPerHost - minimum number of connections
        Returns:
        this
        Throws:
        java.lang.IllegalArgumentException - if minConnectionsPerHost < 0
        Since:
        2.12
        See Also:
        MongoClientOptions.getMinConnectionsPerHost()
      • connectionsPerHost

        public MongoClientOptions.Builder connectionsPerHost​(int connectionsPerHost)
        Deprecated.
        Sets the maximum number of connections per host.
        Parameters:
        connectionsPerHost - maximum number of connections
        Returns:
        this
        Throws:
        java.lang.IllegalArgumentException - if connectionsPerHost < 1
        See Also:
        MongoClientOptions.getConnectionsPerHost()
      • threadsAllowedToBlockForConnectionMultiplier

        @Deprecated
        public MongoClientOptions.Builder threadsAllowedToBlockForConnectionMultiplier​(int threadsAllowedToBlockForConnectionMultiplier)
        Deprecated.
        in the next major release, wait queue size limitations will be removed
        Sets the multiplier for number of threads allowed to block waiting for a connection.
        Parameters:
        threadsAllowedToBlockForConnectionMultiplier - the multiplier
        Returns:
        this
        Throws:
        java.lang.IllegalArgumentException - if threadsAllowedToBlockForConnectionMultiplier < 1
        See Also:
        MongoClientOptions.getThreadsAllowedToBlockForConnectionMultiplier()
      • serverSelectionTimeout

        public MongoClientOptions.Builder serverSelectionTimeout​(int serverSelectionTimeout)
        Deprecated.

        Sets the server selection timeout in milliseconds, which defines how long the driver will wait for server selection to succeed before throwing an exception.

        A value of 0 means that it will timeout immediately if no server is available. A negative value means to wait indefinitely.

        Parameters:
        serverSelectionTimeout - the server selection timeout, in milliseconds
        Returns:
        this
        See Also:
        MongoClientOptions.getServerSelectionTimeout()
      • maxConnectionIdleTime

        public MongoClientOptions.Builder maxConnectionIdleTime​(int maxConnectionIdleTime)
        Deprecated.
        Sets the maximum idle time for a pooled connection.
        Parameters:
        maxConnectionIdleTime - the maximum idle time, in milliseconds, which must be >= 0. A zero value indicates no limit to the life time.
        Returns:
        this
        Throws:
        java.lang.IllegalArgumentException - if maxConnectionIdleTime < 0
        Since:
        2.12
        See Also:
        MongoClientOptions.getMaxConnectionIdleTime()
      • maxConnectionLifeTime

        public MongoClientOptions.Builder maxConnectionLifeTime​(int maxConnectionLifeTime)
        Deprecated.
        Sets the maximum life time for a pooled connection.
        Parameters:
        maxConnectionLifeTime - the maximum life time, in milliseconds, which must be >= 0. A zero value indicates no limit to the life time.
        Returns:
        this
        Throws:
        java.lang.IllegalArgumentException - if maxConnectionLifeTime < 0
        Since:
        2.12
        See Also:
        MongoClientOptions.getMaxConnectionIdleTime()
      • connectTimeout

        public MongoClientOptions.Builder connectTimeout​(int connectTimeout)
        Deprecated.
        Sets the connection timeout.
        Parameters:
        connectTimeout - the connection timeout, in milliseconds, which must be > 0
        Returns:
        this
        Throws:
        java.lang.IllegalArgumentException - if connectTimeout <= 0
        See Also:
        MongoClientOptions.getConnectTimeout()
      • sslEnabled

        public MongoClientOptions.Builder sslEnabled​(boolean sslEnabled)
        Deprecated.
        Sets whether to use SSL.

        If the socketFactory is unset, setting this to true will also set the socketFactory to SSLSocketFactory.getDefault() and setting it to false will set the socketFactory to SocketFactory.getDefault()

        If the socket factory is set and sslEnabled is also set, the socket factory must create instances of SSLSocket. Otherwise, MongoClient will refuse to connect.

        Parameters:
        sslEnabled - set to true if using SSL
        Returns:
        this
        Since:
        3.0
        See Also:
        MongoClientOptions.isSslEnabled(), MongoClientOptions.getSocketFactory()
      • sslInvalidHostNameAllowed

        public MongoClientOptions.Builder sslInvalidHostNameAllowed​(boolean sslInvalidHostNameAllowed)
        Deprecated.
        Define whether invalid host names should be allowed. Defaults to false. Take care before setting this to true, as it makes the application susceptible to man-in-the-middle attacks.
        Parameters:
        sslInvalidHostNameAllowed - whether invalid host names are allowed in SSL certificates.
        Returns:
        this
      • sslContext

        public MongoClientOptions.Builder sslContext​(javax.net.ssl.SSLContext sslContext)
        Deprecated.
        Sets the SSLContext to be used with SSL is enabled. This property is ignored when either sslEnabled is false or socketFactory is non-null.
        Parameters:
        sslContext - the SSLContext to be used for SSL connections
        Returns:
        this
        Since:
        3.5
      • retryWrites

        public MongoClientOptions.Builder retryWrites​(boolean retryWrites)
        Deprecated.
        Sets whether writes should be retried if they fail due to a network error.

        Starting with the 3.11.0 release, the default value is true

        Parameters:
        retryWrites - sets if writes should be retried if they fail due to a network error.
        Returns:
        this
        Since:
        3.6
        See Also:
        MongoClientOptions.getRetryWrites()
      • retryReads

        public MongoClientOptions.Builder retryReads​(boolean retryReads)
        Deprecated.
        Sets whether reads should be retried if they fail due to a network error.
        Parameters:
        retryReads - sets if reads should be retried if they fail due to a network error.
        Returns:
        this
        Since:
        3.11
        See Also:
        MongoClientOptions.getRetryReads()
      • codecRegistry

        public MongoClientOptions.Builder codecRegistry​(CodecRegistry codecRegistry)
        Deprecated.
        Sets the codec registry

        Note that instances of DB and DBCollection do not use the registry, so it's not necessary to include a codec for DBObject in the registry.

        Parameters:
        codecRegistry - the codec registry
        Returns:
        this
        Since:
        3.0
        See Also:
        MongoClientOptions.getCodecRegistry()
      • uuidRepresentation

        public MongoClientOptions.Builder uuidRepresentation​(UuidRepresentation uuidRepresentation)
        Deprecated.
        Sets the UUID representation to use when encoding instances of UUID and when decoding BSON binary values with subtype of 3.

        See MongoClientOptions.getUuidRepresentation() for recommendations on settings this value

        Parameters:
        uuidRepresentation - the UUID representation, which may not be null
        Returns:
        this
        Since:
        3.12
      • addCommandListener

        public MongoClientOptions.Builder addCommandListener​(CommandListener commandListener)
        Deprecated.
        Adds the given command listener.
        Parameters:
        commandListener - the non-null command listener
        Returns:
        this
        Since:
        3.1
      • addConnectionPoolListener

        public MongoClientOptions.Builder addConnectionPoolListener​(ConnectionPoolListener connectionPoolListener)
        Deprecated.
        Adds the given connection pool listener.
        Parameters:
        connectionPoolListener - the non-null connection pool listener
        Returns:
        this
        Since:
        3.5
      • addClusterListener

        public MongoClientOptions.Builder addClusterListener​(ClusterListener clusterListener)
        Deprecated.
        Adds the given cluster listener.
        Parameters:
        clusterListener - the non-null cluster listener
        Returns:
        this
        Since:
        3.3
      • addServerListener

        public MongoClientOptions.Builder addServerListener​(ServerListener serverListener)
        Deprecated.
        Adds the given server listener.
        Parameters:
        serverListener - the non-null server listener
        Returns:
        this
        Since:
        3.3
      • addServerMonitorListener

        public MongoClientOptions.Builder addServerMonitorListener​(ServerMonitorListener serverMonitorListener)
        Deprecated.
        Adds the given server monitor listener.
        Parameters:
        serverMonitorListener - the non-null server monitor listener
        Returns:
        this
        Since:
        3.3
      • alwaysUseMBeans

        @Deprecated
        public MongoClientOptions.Builder alwaysUseMBeans​(boolean alwaysUseMBeans)
        Deprecated.
        there is no replacement for this property
        Sets whether JMX beans registered by the driver should always be MBeans, regardless of whether the VM is Java 6 or greater. If false, the driver will use MXBeans if the VM is Java 6 or greater, and use MBeans if the VM is Java 5.
        Parameters:
        alwaysUseMBeans - true if driver should always use MBeans, regardless of VM version
        Returns:
        this
        See Also:
        MongoClientOptions.isAlwaysUseMBeans()
      • heartbeatFrequency

        public MongoClientOptions.Builder heartbeatFrequency​(int heartbeatFrequency)
        Deprecated.
        Sets the heartbeat frequency. This is the frequency that the driver will attempt to determine the current state of each server in the cluster. The default value is 10,000 milliseconds
        Parameters:
        heartbeatFrequency - the heartbeat frequency for the cluster, in milliseconds, which must be > 0
        Returns:
        this
        Throws:
        java.lang.IllegalArgumentException - if heartbeatFrequency is not > 0
        Since:
        2.12
        See Also:
        MongoClientOptions.getHeartbeatFrequency()
      • minHeartbeatFrequency

        public MongoClientOptions.Builder minHeartbeatFrequency​(int minHeartbeatFrequency)
        Deprecated.
        Sets the minimum heartbeat frequency. In the event that the driver has to frequently re-check a server's availability, it will wait at least this long since the previous check to avoid wasted effort. The default value is 500 milliseconds.
        Parameters:
        minHeartbeatFrequency - the minimum heartbeat frequency, in milliseconds, which must be > 0
        Returns:
        this
        Throws:
        java.lang.IllegalArgumentException - if minHeartbeatFrequency <= 0
        Since:
        2.13
        See Also:
        MongoClientOptions.getMinHeartbeatFrequency()
      • localThreshold

        public MongoClientOptions.Builder localThreshold​(int localThreshold)
        Deprecated.
        Sets the local threshold.
        Parameters:
        localThreshold - the acceptable latency difference, in milliseconds, which must be >= 0
        Returns:
        this
        Throws:
        java.lang.IllegalArgumentException - if localThreshold < 0
        Since:
        2.13.0
        See Also:
        MongoClientOptions.getLocalThreshold()
      • requiredReplicaSetName

        public MongoClientOptions.Builder requiredReplicaSetName​(java.lang.String requiredReplicaSetName)
        Deprecated.
        Sets the required replica set name for the cluster.
        Parameters:
        requiredReplicaSetName - the required replica set name for the replica set.
        Returns:
        this
        Since:
        2.12
        See Also:
        MongoClientOptions.getRequiredReplicaSetName()
      • autoEncryptionSettings

        public MongoClientOptions.Builder autoEncryptionSettings​(AutoEncryptionSettings autoEncryptionSettings)
        Deprecated.
        Set options for auto-encryption.
        Parameters:
        autoEncryptionSettings - auto encryption settings
        Returns:
        this
        Since:
        3.11
      • legacyDefaults

        @Deprecated
        public MongoClientOptions.Builder legacyDefaults()
        Deprecated.
        there is no replacement for this method
        Sets defaults to be what they are in MongoOptions.
        Returns:
        this
        See Also:
        MongoOptions
      • build

        public MongoClientOptions build()
        Deprecated.
        Build an instance of MongoClientOptions.
        Returns:
        the options from this builder