/* * Copyright (c) 2017 Pantheon Technologies, s.r.o. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.cluster.access.commands; /** * Abstract base class for serialization proxies associated with {@link AbstractReadTransactionRequest}s. It implements * the initial (Boron) serialization format. * * @param Message type */ @Deprecated(since = "7.0.0", forRemoval = true) abstract class AbstractReadPathTransactionRequestProxyV1> extends AbstractReadTransactionRequestProxyV1 implements AbstractReadPathTransactionRequest.SerialForm { @java.io.Serial private static final long serialVersionUID = 1L; protected AbstractReadPathTransactionRequestProxyV1() { // For Externalizable } AbstractReadPathTransactionRequestProxyV1(final T request) { super(request); } }