Fixup checkstyle
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / DeadTransactionException.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 com.google.common.annotations.Beta;
11 import com.google.common.collect.ImmutableRangeSet;
12 import com.google.common.collect.RangeSet;
13 import com.google.common.primitives.UnsignedLong;
14 import org.opendaylight.controller.cluster.access.concepts.RequestException;
15
16 /**
17  * A {@link RequestException} indicating that the backend has received a request to create a transaction which has
18  * already been purged.
19  *
20  * @author Robert Varga
21  */
22 @Beta
23 public final class DeadTransactionException extends RequestException {
24     private static final long serialVersionUID = 1L;
25
26     private final RangeSet<UnsignedLong> purgedIdentifiers;
27
28     public DeadTransactionException(final RangeSet<UnsignedLong> purgedIdentifiers) {
29         super("Transactions " + purgedIdentifiers + " have been purged");
30         this.purgedIdentifiers = ImmutableRangeSet.copyOf(purgedIdentifiers);
31     }
32
33     @Override
34     public boolean isRetriable() {
35         return false;
36     }
37
38     public RangeSet<UnsignedLong> getPurgedIdentifier() {
39         return purgedIdentifiers;
40     }
41 }