2013-02-07 15:19:47 +01:00
|
|
|
/**
|
|
|
|
* $RCSfile$
|
2013-02-07 20:10:22 +01:00
|
|
|
* $Revision$
|
|
|
|
* $Date$
|
2013-02-07 15:19:47 +01:00
|
|
|
*
|
2013-04-07 21:15:32 +02:00
|
|
|
* Copyright 2009 Robin Collier.
|
2013-02-07 15:19:47 +01:00
|
|
|
*
|
|
|
|
* All rights reserved. Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2009-10-28 23:38:40 +01:00
|
|
|
package org.jivesoftware.smackx.pubsub;
|
|
|
|
|
2010-02-09 12:55:56 +01:00
|
|
|
import org.jivesoftware.smack.Connection;
|
2009-10-28 23:38:40 +01:00
|
|
|
|
|
|
|
public class CollectionNode extends Node
|
|
|
|
{
|
2010-02-09 12:55:56 +01:00
|
|
|
CollectionNode(Connection connection, String nodeId)
|
2009-10-28 23:38:40 +01:00
|
|
|
{
|
|
|
|
super(connection, nodeId);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|