Make TunnelEndPointInfo work on Uint64
[genius.git] / itm / itm-api / src / main / java / org / opendaylight / genius / itm / utils / TunnelEndPointInfo.java
1 /*
2  * Copyright (c) 2018 Ericsson India Global Services Pvt Ltd. 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 package org.opendaylight.genius.itm.utils;
9
10 import org.immutables.value.Value;
11 import org.opendaylight.genius.infra.OpenDaylightImmutableStyle;
12 import org.opendaylight.yangtools.yang.common.Uint64;
13
14 @Value.Immutable
15 @OpenDaylightImmutableStyle
16 public interface TunnelEndPointInfo {
17
18     Uint64 getSrcEndPointInfo();
19
20     Uint64 getDstEndPointInfo();
21
22     @Value.Lazy
23     default String getSrcEndPointName() {
24         return getSrcEndPointInfo().toString();
25     }
26
27     @Value.Lazy
28     default String getDstEndPointName() {
29         return getDstEndPointInfo().toString();
30     }
31 }