/** * $RCSfile: $ * $Revision: $ * $Date: $ * * Copyright (C) 2006 Jive Software. All rights reserved. * * This software is published under the terms of the GNU Public License (GPL), * a copy of which is included in this distribution. */packageorg.jivesoftware.wildfire.pubsub.models;importorg.jivesoftware.wildfire.pubsub.Node;importorg.xmpp.packet.JID;/** * Anyone may publish items to the node. * * @author Matt Tucker */publicclassOpenPublisherextendsPublisherModel{publicbooleancanPublish(Nodenode,JIDentity){returntrue;}publicStringgetName(){return"open";}}