Merge "Removing { } from NormalizedNodeJsonBodyWriter"
[controller.git] / opendaylight / netconf / netconf-impl / src / main / java / org / opendaylight / controller / netconf / impl / CommitNotifier.java
1 /*
2  * Copyright (c) 2015 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
9 package org.opendaylight.controller.netconf.impl;
10
11 import java.util.Set;
12 import org.w3c.dom.Element;
13
14 public interface CommitNotifier {
15     void sendCommitNotification(String message, Element cfgSnapshot, Set<String> capabilities);
16
17     public static final class NoopCommitNotifier implements CommitNotifier {
18
19         private static final CommitNotifier INSTANCE = new NoopCommitNotifier();
20
21         private NoopCommitNotifier() {}
22
23         public static CommitNotifier getInstance() {
24             return INSTANCE;
25         }
26
27         @Override
28         public void sendCommitNotification(final String message, final Element cfgSnapshot, final Set<String> capabilities) {
29             // NOOP
30         }
31     }
32 }