17054f78a25725ae43ff1631bc3332512d74c494
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / AbstractReadTransactionRequest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. 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 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;
18
19 /**
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()}.
22  *
23  * <p>
24  * This class is visible outside of this package for the purpose of allowing common instanceof checks
25  * and simplified codepaths.
26  *
27  * @author Robert Varga
28  *
29  * @param <T> Message type
30  */
31 @Beta
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
37     AbstractReadTransactionRequest(final TransactionIdentifier identifier, final long sequence, final ActorRef replyTo,
38         final YangInstanceIdentifier path) {
39         super(identifier, sequence, replyTo);
40         this.path = Preconditions.checkNotNull(path);
41     }
42
43     AbstractReadTransactionRequest(final T request, final ABIVersion version) {
44         super(request, version);
45         this.path = request.getPath();
46     }
47
48     @Nonnull
49     public final YangInstanceIdentifier getPath() {
50         return path;
51     }
52
53     @Override
54     protected ToStringHelper addToStringAttributes(final ToStringHelper toStringHelper) {
55         return super.addToStringAttributes(toStringHelper).add("path", path);
56     }
57
58     @Override
59     protected abstract AbstractReadTransactionRequestProxyV1<T> externalizableProxy(final ABIVersion version);
60 }