Bug 1029: Remove dead code: samples/clustersession
[controller.git] / opendaylight / connectionmanager / implementation / src / main / java / org / opendaylight / controller / connectionmanager / scheme / RoundRobinScheme.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.connectionmanager.scheme;
9
10 import org.opendaylight.controller.clustering.services.IClusterGlobalServices;
11 import org.opendaylight.controller.connectionmanager.ConnectionMgmtScheme;
12 import org.opendaylight.controller.sal.core.Node;
13
14 class RoundRobinScheme extends AbstractScheme {
15     protected RoundRobinScheme(IClusterGlobalServices clusterServices) {
16         super(clusterServices, ConnectionMgmtScheme.ROUND_ROBIN);
17         // TODO Auto-generated constructor stub
18     }
19
20     public static AbstractScheme getScheme(IClusterGlobalServices clusterServices) {
21         return null;
22     }
23
24     @Override
25     public boolean isConnectionAllowedInternal(Node node) {
26         // TODO Auto-generated method stub
27         return false;
28     }
29
30 }