Merge "BUG 1839 - HTTP delete of non existing data"
[controller.git] / opendaylight / md-sal / statistics-manager / src / main / java / org / opendaylight / controller / md / statistics / manager / StatNotifyCommiter.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
9 package org.opendaylight.controller.md.statistics.manager;
10
11 import org.opendaylight.yangtools.yang.binding.NotificationListener;
12
13 /**
14  * statistics-manager
15  * org.opendaylight.controller.md.statistics.manager
16  *
17  * StatNotifyCommiter
18  * Definition Interface for notification implementer class rule
19  * Interface represent a contract between RPC Device Notification
20  * and Operational/DataStore commits.
21  *
22  *
23  * @author <a href="mailto:vdemcak@cisco.com">Vaclav Demcak</a>
24  *
25  * Created: Aug 28, 2014
26  */
27 public interface StatNotifyCommiter<N extends NotificationListener> extends AutoCloseable, NotificationListener {
28
29
30 }
31