2df22ff2f1c7168c9be1b86634cab553976fe6dc
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / AbstractReadPathTransactionRequestProxyV1.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies, s.r.o. 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.controller.cluster.access.commands;
9
10 /**
11  * Abstract base class for serialization proxies associated with {@link AbstractReadTransactionRequest}s. It implements
12  * the initial (Boron) serialization format.
13  *
14  * @param <T> Message type
15  */
16 @Deprecated(since = "7.0.0", forRemoval = true)
17 abstract class AbstractReadPathTransactionRequestProxyV1<T extends AbstractReadPathTransactionRequest<T>>
18         extends AbstractReadTransactionRequestProxyV1<T> implements AbstractReadPathTransactionRequest.SerialForm<T> {
19     @java.io.Serial
20     private static final long serialVersionUID = 1L;
21
22     protected AbstractReadPathTransactionRequestProxyV1() {
23         // For Externalizable
24     }
25
26     AbstractReadPathTransactionRequestProxyV1(final T request) {
27         super(request);
28     }
29 }