Add new cds-access-api proxies
[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  * @author Robert Varga
15  *
16  * @param <T> Message type
17  */
18 abstract class AbstractReadPathTransactionRequestProxyV1<T extends AbstractReadPathTransactionRequest<T>>
19         extends AbstractReadTransactionRequestProxyV1<T> implements AbstractReadPathTransactionRequest.SerialForm<T> {
20     @java.io.Serial
21     private static final long serialVersionUID = 1L;
22
23     protected AbstractReadPathTransactionRequestProxyV1() {
24         // For Externalizable
25     }
26
27     AbstractReadPathTransactionRequestProxyV1(final T request) {
28         super(request);
29     }
30 }