Fix CS warnings in cds-access-api and enable enforcement
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / TransactionCanCommitSuccess.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 org.opendaylight.controller.cluster.access.ABIVersion;
11 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
12
13 /**
14  * Successful reply to a coordinated commit request initiated by a {@link ModifyTransactionRequest}
15  * or {@link CommitLocalTransactionRequest}.
16  *
17  * @author Robert Varga
18  */
19 public final class TransactionCanCommitSuccess extends TransactionSuccess<TransactionCanCommitSuccess> {
20     private static final long serialVersionUID = 1L;
21
22     public TransactionCanCommitSuccess(final TransactionIdentifier identifier, final long sequence) {
23         super(identifier, sequence);
24     }
25
26     @Override
27     protected AbstractTransactionSuccessProxy<TransactionCanCommitSuccess> externalizableProxy(
28             final ABIVersion version) {
29         return new TransactionCanCommitSuccessProxyV1(this);
30     }
31
32     @Override
33     protected TransactionCanCommitSuccess cloneAsVersion(final ABIVersion version) {
34         return this;
35     }
36 }