org.jivesoftware.smackx.pubsub.NodeEvent Maven / Gradle / Ivy
The newest version!
/*
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy