use of org.opendaylight.genius.itm.utils.TunnelEndPointInfoBuilder in project genius by opendaylight.
the class DpnTepStateCache method addTunnelEndPointInfoToCache.
// Start: TunnelEndPoint Cache accessors
private void addTunnelEndPointInfoToCache(String tunnelName, String srcEndPtInfo, String dstEndPtInfo) {
TunnelEndPointInfo tunnelEndPointInfo = new TunnelEndPointInfoBuilder().setSrcEndPointInfo(srcEndPtInfo).setDstEndPointInfo(dstEndPtInfo).build();
tunnelEndpointMap.put(tunnelName, tunnelEndPointInfo);
}
Aggregations