Move integration tests to mdsal-it-parent
[lispflowmapping.git] / mappingservice / api / src / main / java / org / opendaylight / lispflowmapping / interfaces / dao / IMappingKey.java
1 /*
2  * Copyright (c) 2014 Contextream, 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
9 package org.opendaylight.lispflowmapping.interfaces.dao;
10
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.lispaddress.LispAddressContainer;
12
13 /**
14  * The mapping service key in the DAO.
15  */
16 public interface IMappingKey {
17
18     /**
19      * @return The eid of the key
20      */
21     LispAddressContainer getEID();
22
23     /**
24      * @return The mask of the eid
25      */
26     int getMask();
27
28 }