Make SimpleMapCache simple again
[lispflowmapping.git] / mappingservice / api / src / main / java / org / opendaylight / lispflowmapping / interfaces / dao / SubKeys.java
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 VNI = "vni";
25     String LCAF_SRCDST = "lcaf_srcdst";
26
27     String UNKOWN = "-1";
28 }