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 / concepts / RequestSuccess.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.concepts;
9
10 import com.google.common.annotations.Beta;
11 import javax.annotation.Nonnull;
12 import org.opendaylight.controller.cluster.access.ABIVersion;
13 import org.opendaylight.yangtools.concepts.WritableIdentifier;
14
15 /**
16  * A successful reply to a {@link Request}.
17  *
18  * @author Robert Varga
19  *
20  * @param <T> Target identifier type
21  */
22 @Beta
23 public abstract class RequestSuccess<T extends WritableIdentifier, C extends RequestSuccess<T, C>> extends
24         Response<T, C> {
25     private static final long serialVersionUID = 1L;
26
27     protected RequestSuccess(@Nonnull final C success, @Nonnull final ABIVersion version) {
28         super(success, version);
29     }
30
31     protected RequestSuccess(@Nonnull final T target, final long sequence) {
32         super(target, sequence);
33     }
34
35     @Override
36     protected abstract AbstractSuccessProxy<T, C> externalizableProxy(@Nonnull ABIVersion version);
37 }