001/*
002 * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Nuxeo - initial API and implementation
011 *
012 * $Id: DocumentEventCategories.java 19250 2007-05-23 20:06:09Z sfermigier $
013 */
014
015package org.nuxeo.ecm.core.api.event;
016
017/**
018 * Document event categories.
019 *
020 * @author <a href="mailto:ja@nuxeo.com">Julien Anguenot</a>
021 */
022public final class DocumentEventCategories {
023
024    public static final String EVENT_DOCUMENT_CATEGORY = "eventDocumentCategory";
025
026    public static final String EVENT_LIFE_CYCLE_CATEGORY = "eventLifeCycleCategory";
027
028    /**
029     * Category for events that are fired on behalf of client (outside core) code.
030     */
031    public static final String EVENT_CLIENT_NOTIF_CATEGORY = "clientCodeNotificationCategory";
032
033    // Constant utility class
034    private DocumentEventCategories() {
035    }
036
037}