Bump upstreams to SNAPSHOTs
[netconf.git] / netconf / mdsal-netconf-connector / src / main / java / org / opendaylight / netconf / mdsal / connector / DOMDataTransactionValidator.java
1 /*
2  * Copyright (c) 2018 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.netconf.mdsal.connector;
9
10 import com.google.common.annotations.Beta;
11 import com.google.common.util.concurrent.FluentFuture;
12 import org.opendaylight.mdsal.dom.api.DOMDataBroker;
13 import org.opendaylight.mdsal.dom.api.DOMDataBrokerExtension;
14 import org.opendaylight.mdsal.dom.api.DOMDataTreeWriteTransaction;
15 import org.opendaylight.mdsal.dom.api.DOMServiceExtension;
16 import org.opendaylight.yangtools.yang.common.ErrorTag;
17 import org.opendaylight.yangtools.yang.common.ErrorType;
18 import org.opendaylight.yangtools.yang.common.OperationFailedException;
19 import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
20
21 /**
22  * A {@link DOMServiceExtension} which allows users to provide Validate capability for {@link DOMDataBroker}.
23  *
24  * <p> See <a href="https://tools.ietf.org/html/rfc4741#section-8.6">RFC4741 section 8.6</a> for details.
25  */
26 @Beta
27 public interface DOMDataTransactionValidator extends DOMDataBrokerExtension {
28     /**
29      * Validates state of the data tree associated with the provided {@link DOMDataTreeWriteTransaction}.
30      *
31      * <p>The operation should not have any side-effects on the transaction state.
32      *
33      * <p>It can be executed many times, providing the same results if the state of the transaction has not been
34      * changed.
35      *
36      * @param transaction
37      *     transaction to be validated
38      * @return
39      *     a FluentFuture containing the result of the validate operation. The future blocks until the validation
40      *     operation is complete. A successful validate returns nothing. On failure, the Future will fail
41      *     with a {@link ValidationFailedException} or an exception derived from ValidationFailedException.
42      */
43     FluentFuture<Void> validate(DOMDataTreeWriteTransaction transaction);
44
45     /**
46      * Failed validation of asynchronous transaction. This exception is raised and returned when transaction validation
47      * failed.
48      */
49     class ValidationFailedException extends OperationFailedException {
50         private static final long serialVersionUID = 1L;
51
52         public ValidationFailedException(final String message, final Throwable cause) {
53             super(message, cause, RpcResultBuilder.newError(ErrorType.APPLICATION, ErrorTag.INVALID_VALUE, message,
54                 null, null, cause));
55         }
56
57         public ValidationFailedException(final String message) {
58             this(message, null);
59         }
60     }
61 }
62