1 /* 2 * Copyright (c) 2015 Cisco Systems, Inc. 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 9 package org.opendaylight.lispflowmapping.interfaces.dao; 10 11 /** 12 * Defines DAO Subkeys 13 * 14 * @author Florin Coras 15 * 16 */ 17 18 public interface SubKeys { 19 String AUTH_KEY = "password"; 20 String RECORD = "address"; 21 String XTRID_RECORDS = "xtrid"; 22 String SUBSCRIBERS = "subscribers"; 23 String SRC_RLOCS = "src_rlocs"; 24 String REGDATE = "date"; 25 String VNI = "vni"; 26 String LCAF_SRCDST = "lcaf_srcdst"; 27 28 String UNKOWN = "-1"; 29 }