Package com.mongodb

Class DBAddress

    • Constructor Detail

      • DBAddress

        public DBAddress​(String urlFormat)
        Deprecated. 
        Creates a new address. Accepts as the parameter format:
        • name "mydb"
        • <host>/name "127.0.0.1/mydb"
        • <host>:<port>/name "127.0.0.1:8080/mydb"
        Parameters:
        urlFormat - the URL-formatted host and port
        See Also:
        MongoClientURI
        MongoDB documentation
        MongoDB Connection String
      • DBAddress

        public DBAddress​(DBAddress other,
                         String databaseName)
        Deprecated. 
        Create a DBAddress using the host and port from an existing DBAddress, and connected to a given database.
        Parameters:
        other - an existing DBAddress that gives the host and port
        databaseName - the database to which to connect
      • DBAddress

        public DBAddress​(String host,
                         String databaseName)
        Deprecated. 
        Creates a DBAddress for the given database on the given host.
        Parameters:
        host - host name
        databaseName - database name
      • DBAddress

        public DBAddress​(String host,
                         int port,
                         String databaseName)
        Deprecated. 
        Creates a DBAddress for the given database on the given host at the given port.
        Parameters:
        host - host name
        port - database port
        databaseName - database name
      • DBAddress

        public DBAddress​(InetAddress inetAddress,
                         int port,
                         String databaseName)
        Deprecated. 
        Parameters:
        inetAddress - host address
        port - database port
        databaseName - database name
    • Method Detail

      • getSister

        public DBAddress getSister​(String name)
        Deprecated. 
        Creates a DBAddress pointing to a different database on the same server.
        Parameters:
        name - database name
        Returns:
        the DBAddress for the given name with the same host and port as this
        Throws:
        MongoException - if failed
      • getDBName

        public String getDBName​()
        Deprecated. 
        Gets the database name
        Returns:
        the database name
      • toString

        public String toString​()
        Deprecated. 
        Gets a String representation of address as host:port/databaseName.
        Overrides:
        toString in class ServerAddress
        Returns:
        this address