/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.localization.wiki.internal; import org.xwiki.bridge.event.WikiDeletedEvent; import org.xwiki.component.descriptor.ComponentDescriptor; import org.xwiki.component.manager.ComponentLookupException; import org.xwiki.component.manager.ComponentManager; import org.xwiki.localization.TranslationBundle; import org.xwiki.localization.message.TranslationMessageParser; import org.xwiki.model.reference.DocumentReference; import org.xwiki.observation.event.Event; /** * Component wiki document based implementation of Bundle. * * @see AbstractDocumentTranslationBundle * @version $Id: c4fd0923d6f8369357e1c975edb4e6c3ddb13b39 $ * @since 6.2RC1 */ public class ComponentDocumentTranslationBundle extends AbstractDocumentTranslationBundle { private ComponentDescriptor<TranslationBundle> descriptor; /** * @param idPrefix the prefix to use when generating the bundle unique identifier * @param documentReference the document reference * @param componentManager used to lookup components needed to manipulate wiki documents * @param translationMessageParser the parser to use for each message * @param descriptor the component descriptor used to unregister the bundle * @throws ComponentLookupException failed to lookup some required components */ public ComponentDocumentTranslationBundle(String idPrefix, DocumentReference documentReference, ComponentManager componentManager, TranslationMessageParser translationMessageParser, ComponentDescriptor<TranslationBundle> descriptor) throws ComponentLookupException { super(idPrefix, documentReference, componentManager, translationMessageParser); this.descriptor = descriptor; } @Override public void onEvent(Event event, Object source, Object data) { super.onEvent(event, source, data); if (event instanceof WikiDeletedEvent) { // Unregister the component here because DocumentTranslationBundleFactory won't (it does not receive // document deleted event when a wiki is deleted) this.componentManager.unregisterComponent(this.descriptor); } } }