andrewsbrown | 39b0fc9 | 2015-05-11 13:44:38 -0700 | [diff] [blame] | 1 | /* |
| 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 | */ |
| 14 | package com.intel.jndn.management; |
| 15 | |
| 16 | import 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 | */ |
| 25 | public 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 | } |