blob: a4e64b7503d21f8d308767e6c6c23fdbc8aec130 [file] [log] [blame]
Tomek OsiƄski7a1db182018-02-03 17:15:06 +01001/*
2 * Copyright 2018-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.xmpp.pubsub.model;
18
19import org.dom4j.Element;
20import org.xmpp.packet.Message;
21
22import static org.onosproject.xmpp.pubsub.XmppPubSubConstants.PUBSUB_EVENT_NS;
23
24/**
25 * Abstracts Event Notification message of XMPP PubSub protocol.
26 */
27public class XmppEventNotification extends Message {
28
29 /**
30 * Constructor for XmppEventNotification class. It generates representation
31 * of XMPP NOTIFY message.
32 *
33 * @param node node attribute of PubSub extension
34 * @param payload XML payload for XMPP NOTIFY message
35 */
36 public XmppEventNotification(String node, Element payload) {
37 super(docFactory.createDocument().addElement("message"));
38 this.addChildElement("event", PUBSUB_EVENT_NS);
39 Element items = docFactory.createElement("items");
40 items.addAttribute("node", node);
41 items.add(payload);
42 this.getElement().element("event").add(items);
43 }
44
45}