/*
 * Copyright 2008-present MongoDB, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.mongodb.selector;

import com.mongodb.ServerAddress;
import com.mongodb.connection.ClusterDescription;
import com.mongodb.connection.ServerDescription;

import java.util.Arrays;
import java.util.Collections;
import java.util.List;

import static com.mongodb.assertions.Assertions.notNull;

A server selector that chooses a server that matches the server address.
Since:3.0
/** * A server selector that chooses a server that matches the server address. * * @since 3.0 */
@Deprecated public class ServerAddressSelector implements ServerSelector { private final ServerAddress serverAddress;
Constructs a new instance.
Params:
  • serverAddress – the server address
/** * Constructs a new instance. * * @param serverAddress the server address */
public ServerAddressSelector(final ServerAddress serverAddress) { this.serverAddress = notNull("serverAddress", serverAddress); }
Gets the server address.
Returns:the server address
/** * Gets the server address. * * @return the server address */
public ServerAddress getServerAddress() { return serverAddress; } @Override @SuppressWarnings("deprecation") public List<ServerDescription> select(final ClusterDescription clusterDescription) { if (clusterDescription.getByServerAddress(serverAddress) != null) { return Arrays.asList(clusterDescription.getByServerAddress(serverAddress)); } return Collections.emptyList(); } @Override public String toString() { return "ServerAddressSelector{" + "serverAddress=" + serverAddress + '}'; } }