All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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