001package com.nimbusds.common.config; 002 003 004/** 005 * Enumeration of server selection algorithms. 006 */ 007public enum ServerSelectionAlgorithm { 008 009 010 /** 011 * Fail-over selection algorithm. 012 */ 013 FAILOVER, 014 015 016 /** 017 * Round-robin selection algorithm. 018 */ 019 ROUND_ROBIN 020}