Cleaned up mdsal-common-api and mdsal-dom-spi
[mdsal.git] / dom / mdsal-dom-broker / src / main / java / org / opendaylight / mdsal / dom / broker / PingPongFuture.java
1 /*
2  * Copyright (c) 2014 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.mdsal.dom.broker;
9
10 import org.opendaylight.mdsal.common.api.TransactionCommitFailedException;
11
12 import com.google.common.util.concurrent.AbstractCheckedFuture;
13 import com.google.common.util.concurrent.ListenableFuture;
14
15 /**
16  * A {@link java.util.concurrent.Future} used to report the status of an future
17  * {@link java.util.concurrent.Future}.
18  */
19 final class PingPongFuture extends AbstractCheckedFuture<Void, TransactionCommitFailedException> {
20   protected PingPongFuture(final ListenableFuture<Void> delegate) {
21     super(delegate);
22   }
23
24   @Override
25   protected TransactionCommitFailedException mapException(final Exception e) {
26     if (e.getCause() instanceof TransactionCommitFailedException){
27       return (TransactionCommitFailedException) e.getCause();
28     } else {
29             return new TransactionCommitFailedException(e.getMessage(), e.getCause());
30     }
31   }
32 }
33