use of org.opendaylight.yang.gen.v1.urn.opendaylight.genius.itm.op.rev160406.dpn.teps.state.DpnsTepsKey in project genius by opendaylight.
the class DpnTepStateCache method buildRemoteDpnsInstanceIdentifier.
private InstanceIdentifier<RemoteDpns> buildRemoteDpnsInstanceIdentifier(BigInteger srcDpnId, BigInteger dstDpnId) {
DpnsTepsKey dpnsTepsKey = new DpnsTepsKey(srcDpnId);
RemoteDpnsKey remoteDpnsKey = new RemoteDpnsKey(dstDpnId);
return InstanceIdentifier.builder(DpnTepsState.class).child(DpnsTeps.class, dpnsTepsKey).child(RemoteDpns.class, remoteDpnsKey).build();
}
Aggregations