blob: f8816be724130f53c08eedb3118cf946e04726de [file] [log] [blame]
andrewsbrown39b0fc92015-05-11 13:44:38 -07001/*
2 * jndn-management
3 * Copyright (c) 2015, Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU Lesser General Public License,
7 * version 3, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT ANY
10 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
12 * more details.
13 */
14package com.intel.jndn.management;
15
16import net.named_data.jndn.Name;
17
18/**
19 * A reference list of the strategies available in NFD; should match
20 * <a href="http://redmine.named-data.net/projects/nfd/wiki/StrategyChoice#Strategy">
21 * http://redmine.named-data.net/projects/nfd/wiki/StrategyChoice#Strategy</a>
22 *
23 * @author Andrew Brown <andrew.brown@intel.com>
24 */
25public class Strategies {
26 public static final Name BEST_ROUTE = new Name("/localhost/nfd/strategy/best-route");
27 public static final Name BROADCAST = new Name("/localhost/nfd/strategy/broadcast");
28 public static final Name CLIENT_CONTROL = new Name("/localhost/nfd/strategy/client-control");
29 public static final Name NCC = new Name("/localhost/nfd/strategy/ncc");
30}