b6c6cdf8ab6d0f07102014a1170f23e9be260cd7
[controller.git] / opendaylight / md-sal / messagebus-util / src / main / java / org / opendaylight / controller / messagebus / app / util / TopicDOMNotification.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.messagebus.app.util;
10
11 import org.opendaylight.controller.md.sal.dom.api.DOMNotification;
12 import org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.messagebus.eventaggregator.rev141202.TopicNotification;
13 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
14 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
15
16 public class TopicDOMNotification implements DOMNotification {
17
18     private static final SchemaPath TOPIC_NOTIFICATION_ID = SchemaPath.create(true, TopicNotification.QNAME);
19     private final ContainerNode body;
20
21     public TopicDOMNotification(final ContainerNode body) {
22         this.body = body;
23     }
24
25     @Override
26     public SchemaPath getType() {
27         return TOPIC_NOTIFICATION_ID;
28     }
29
30     @Override
31     public ContainerNode getBody() {
32         return body;
33     }
34
35     @Override
36     public String toString() {
37         return "TopicDOMNotification [body=" + body + "]";
38     }
39 }