private RoutedDOMRpcRoutingTableEntry(
     final DOMRpcIdentifier globalRpcId,
     final YangInstanceIdentifier keyId,
     final Map<YangInstanceIdentifier, List<DOMRpcImplementation>> impls) {
   super(globalRpcId.getType(), impls);
   this.keyId = Preconditions.checkNotNull(keyId);
   this.globalRpcId = Preconditions.checkNotNull(globalRpcId);
 }