2 * Copyright (c) 2016, 2017 Cisco Systems, Inc. and others. All rights reserved.
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
8 package org.opendaylight.controller.cluster.access.commands;
10 import akka.actor.ActorRef;
11 import com.google.common.annotations.Beta;
12 import com.google.common.base.MoreObjects.ToStringHelper;
13 import com.google.common.base.Preconditions;
14 import javax.annotation.Nonnull;
15 import org.opendaylight.controller.cluster.access.ABIVersion;
16 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
17 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
20 * Abstract base class for {@link TransactionRequest}s accessing data as visible in the isolated context of a particular
21 * transaction. The path of the data being accessed is returned via {@link #getPath()}.
24 * This class is visible outside of this package for the purpose of allowing common instanceof checks
25 * and simplified codepaths.
27 * @author Robert Varga
29 * @param <T> Message type
32 public abstract class AbstractReadTransactionRequest<T extends AbstractReadTransactionRequest<T>>
33 extends TransactionRequest<T> {
34 private static final long serialVersionUID = 1L;
35 private final YangInstanceIdentifier path;
36 private final boolean snapshotOnly;
38 AbstractReadTransactionRequest(final TransactionIdentifier identifier, final long sequence, final ActorRef replyTo,
39 final YangInstanceIdentifier path, final boolean snapshotOnly) {
40 super(identifier, sequence, replyTo);
41 this.path = Preconditions.checkNotNull(path);
42 this.snapshotOnly = snapshotOnly;
45 AbstractReadTransactionRequest(final T request, final ABIVersion version) {
46 super(request, version);
47 this.path = request.getPath();
48 this.snapshotOnly = request.isSnapshotOnly();
52 public final YangInstanceIdentifier getPath() {
56 public final boolean isSnapshotOnly() {
61 protected ToStringHelper addToStringAttributes(final ToStringHelper toStringHelper) {
62 return super.addToStringAttributes(toStringHelper).add("path", path);
66 protected abstract AbstractReadTransactionRequestProxyV1<T> externalizableProxy(ABIVersion version);