blob: a256c61fd08bbf8a0c4a61a8adec6ff1f1edd48c [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.xmpp.packet.IQ;
20
21/**
22 * Abstracts Unsubscribe message of XMPP PubSub protocol.
23 */
24public class XmppUnsubscribe extends IQ {
25
26 private String jabberId;
27 private String nodeID;
28
29 /**
30 * Constructor for XmppUnsubscribe class.
31 *
32 * @param iq XMPP IQ stanza, which XmppUnsubscribe is based on.
33 */
34 public XmppUnsubscribe(IQ iq) {
35 super(iq.getElement());
36 this.jabberId = this.fromJID.toString();
37 this.nodeID = this.getChildElement().element("unsubscribe").attribute("node").getValue();
38 }
39
40 public String getJabberId() {
41 return this.jabberId;
42 }
43
44 public String getNodeID() {
45 return this.nodeID;
46 }
47
48}