mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
f7a1c750ad
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@11346 b35dd754-fafc-0310-a699-88a17e54d16e
19 lines
259 B
Java
19 lines
259 B
Java
/*
|
|
* Created on 2009-05-12
|
|
*/
|
|
package org.jivesoftware.smackx.pubsub;
|
|
|
|
abstract public class NodeEvent
|
|
{
|
|
private String nodeId;
|
|
|
|
protected NodeEvent(String id)
|
|
{
|
|
nodeId = id;
|
|
}
|
|
|
|
public String getNodeId()
|
|
{
|
|
return nodeId;
|
|
}
|
|
}
|