| Class | Line # | Actions | |||||
|---|---|---|---|---|---|---|---|
| BlogDocumentSavingListener | 47 | 2 | 0% | 2 | 0 |
| 1 | /* | |
| 2 | * See the NOTICE file distributed with this work for additional | |
| 3 | * information regarding copyright ownership. | |
| 4 | * | |
| 5 | * This is free software; you can redistribute it and/or modify it | |
| 6 | * under the terms of the GNU Lesser General Public License as | |
| 7 | * published by the Free Software Foundation; either version 2.1 of | |
| 8 | * the License, or (at your option) any later version. | |
| 9 | * | |
| 10 | * This software is distributed in the hope that it will be useful, | |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 13 | * Lesser General Public License for more details. | |
| 14 | * | |
| 15 | * You should have received a copy of the GNU Lesser General Public | |
| 16 | * License along with this software; if not, write to the Free | |
| 17 | * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | |
| 18 | * 02110-1301 USA, or see the FSF site: http://www.fsf.org. | |
| 19 | */ | |
| 20 | package org.xwiki.platform.blog.internal; | |
| 21 | ||
| 22 | import javax.inject.Inject; | |
| 23 | import javax.inject.Named; | |
| 24 | import javax.inject.Singleton; | |
| 25 | ||
| 26 | import org.xwiki.bridge.event.DocumentCreatingEvent; | |
| 27 | import org.xwiki.bridge.event.DocumentUpdatingEvent; | |
| 28 | import org.xwiki.component.annotation.Component; | |
| 29 | import org.xwiki.observation.AbstractEventListener; | |
| 30 | import org.xwiki.observation.event.Event; | |
| 31 | import org.xwiki.platform.blog.BlogVisibilityUpdater; | |
| 32 | ||
| 33 | import com.xpn.xwiki.doc.XWikiDocument; | |
| 34 | ||
| 35 | /** | |
| 36 | * Synchronize the visibility of blog pages with the "published" and "hidden" fields of the BlogPostClass object. | |
| 37 | * | |
| 38 | * @version $Id: 0821e19ed46b213eee3d53e8a3cec11d28eda6f2 $ | |
| 39 | * | |
| 40 | * @since 9.0RC1 | |
| 41 | * @since 8.4.3 | |
| 42 | * @since 7.4.6 | |
| 43 | */ | |
| 44 | @Component | |
| 45 | @Singleton | |
| 46 | @Named(BlogDocumentSavingListener.NAME) | |
| 47 | public class BlogDocumentSavingListener extends AbstractEventListener | |
| 48 | { | |
| 49 | /** | |
| 50 | * Name of the listener. | |
| 51 | */ | |
| 52 | public static final String NAME = "Blog Document Saving Listener"; | |
| 53 | ||
| 54 | @Inject | |
| 55 | private BlogVisibilityUpdater blogVisibilityUpdater; | |
| 56 | ||
| 57 | /** | |
| 58 | * Construct a BlogDocumentSavingListener. | |
| 59 | */ | |
| 60 | 1 | public BlogDocumentSavingListener() |
| 61 | { | |
| 62 | 1 | super(NAME, new DocumentCreatingEvent(), new DocumentUpdatingEvent()); |
| 63 | } | |
| 64 | ||
| 65 | 13 | @Override |
| 66 | public void onEvent(Event event, Object source, Object data) | |
| 67 | { | |
| 68 | 13 | blogVisibilityUpdater.synchronizeHiddenMetadata((XWikiDocument) source); |
| 69 | } | |
| 70 | } |