001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.kernel.messaging;
016    
017    /**
018     * @author Brian Wing Shun Chan
019     */
020    public interface DestinationNames {
021    
022            public static final String ASYNC_SERVICE = "liferay/async_service";
023    
024            public static final String AUDIT = "liferay/audit";
025    
026            public static final String BLOGS = "liferay/blogs";
027    
028            public static final String BUFFERED_INCREMENT_PARALLEL =
029                    "liferay/buffered_increment_parallel";
030    
031            public static final String BUFFERED_INCREMENT_SERIAL =
032                    "liferay/buffered_increment_serial";
033    
034            public static final String CONVERT_PROCESS = "liferay/convert_process";
035    
036            public static final String DOCUMENT_LIBRARY_HOOK =
037                    "liferay/document_library_hook";
038    
039            public static final String FLAGS = "liferay/flags";
040    
041            /**
042             * This is a special destination. Binding a message listener to this
043             * destination will allow it to listen to messages sent to all destinations.
044             */
045            public static final String GLOBAL = "liferay/global";
046    
047            public static final String HOT_DEPLOY = "liferay/hot_deploy";
048    
049            public static final String IP_GEOCODER = "liferay/ip_geocoder";
050    
051            public static final String IP_GEOCODER_RESPONSE =
052                    "liferay/ip_geocoder/response";
053    
054            public static final String JOURNAL = "liferay/journal";
055    
056            public static final String LAYOUTS_LOCAL_PUBLISHER =
057                    "liferay/layouts_local_publisher";
058    
059            public static final String LAYOUTS_REMOTE_PUBLISHER =
060                    "liferay/layouts_remote_publisher";
061    
062            public static final String LIVE_USERS = "liferay/live_users";
063    
064            public static final String MAIL = "liferay/mail";
065    
066            public static final String MAIL_SYNCHRONIZER = "liferay/mail_synchronizer";
067    
068            public static final String MESSAGE_BOARDS = "liferay/message_boards";
069    
070            public static final String MESSAGE_BOARDS_MAILING_LIST =
071                    "liferay/message_boards_mailing_list";
072    
073            public static final String MESSAGE_BUS_DEFAULT_RESPONSE=
074                    "liferay/message_bus/default_response";
075    
076            public static final String MESSAGE_BUS_MESSAGE_STATUS =
077                    "liferay/message_bus/message_status";
078    
079            public static final String MONITORING = "liferay/monitoring";
080    
081            public static final String POLLER = "liferay/poller";
082    
083            public static final String POLLER_RESPONSE = "liferay/poller_response";
084    
085            public static final String SCHEDULER_DISPATCH =
086                    "liferay/scheduler_dispatch";
087    
088            public static final String SCHEDULER_ENGINE = "liferay/scheduler_engine";
089    
090            public static final String SCHEDULER_ENGINE_RESPONSE =
091                    "liferay/scheduler_engine/response";
092    
093            public static final String SCRIPTING = "liferay/scripting";
094    
095            public static final String SEARCH_READER = "liferay/search_reader";
096    
097            public static final String SEARCH_READER_RESPONSE =
098                    "liferay/search_reader/response";
099    
100            public static final String SEARCH_WRITER = "liferay/search_writer";
101    
102            public static final String WIKI = "liferay/wiki";
103    
104            public static final String WORKFLOW_DEFINITION =
105                    "liferay/workflow_definition";
106    
107            public static final String WORKFLOW_ENGINE = "liferay/workflow_engine";
108    
109            public static final String WORKFLOW_INSTANCE = "liferay/workflow_instance";
110    
111            public static final String WORKFLOW_LOG = "liferay/workflow_log";
112    
113            public static final String WORKFLOW_TASK = "liferay/workflow_task";
114    
115            public static final String WSRP = "liferay/wsrp";
116    
117    }