mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 09:45:59 +01:00
f7a1c750ad
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@11346 b35dd754-fafc-0310-a699-88a17e54d16e
15 lines
274 B
Java
15 lines
274 B
Java
/*
|
|
* Created on 2009-07-13
|
|
*/
|
|
package org.jivesoftware.smackx.pubsub;
|
|
|
|
import org.jivesoftware.smack.XMPPConnection;
|
|
|
|
public class CollectionNode extends Node
|
|
{
|
|
CollectionNode(XMPPConnection connection, String nodeId)
|
|
{
|
|
super(connection, nodeId);
|
|
}
|
|
|
|
}
|