001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.kernel.scheduler;
016    
017    import com.liferay.portal.kernel.messaging.Message;
018    import com.liferay.portal.kernel.messaging.proxy.BaseProxyBean;
019    import com.liferay.portal.kernel.scheduler.messaging.SchedulerResponse;
020    
021    import java.util.List;
022    
023    /**
024     * @author Tina Tian
025     */
026    public class SchedulerEngineProxyBean
027            extends BaseProxyBean implements SchedulerEngine {
028    
029            @Override
030            public void delete(String groupName, StorageType storageType) {
031                    throw new UnsupportedOperationException();
032            }
033    
034            @Override
035            public void delete(
036                    String jobName, String groupName, StorageType storageType) {
037    
038                    throw new UnsupportedOperationException();
039            }
040    
041            @Override
042            public SchedulerResponse getScheduledJob(
043                    String jobName, String groupName, StorageType storageType) {
044    
045                    throw new UnsupportedOperationException();
046            }
047    
048            @Override
049            public List<SchedulerResponse> getScheduledJobs() {
050                    throw new UnsupportedOperationException();
051            }
052    
053            @Override
054            public List<SchedulerResponse> getScheduledJobs(StorageType storageType) {
055                    throw new UnsupportedOperationException();
056            }
057    
058            @Override
059            public List<SchedulerResponse> getScheduledJobs(
060                    String groupName, StorageType storageType) {
061    
062                    throw new UnsupportedOperationException();
063            }
064    
065            @Override
066            public void pause(String groupName, StorageType storageType) {
067                    throw new UnsupportedOperationException();
068            }
069    
070            @Override
071            public void pause(
072                    String jobName, String groupName, StorageType storageType) {
073    
074                    throw new UnsupportedOperationException();
075            }
076    
077            @Override
078            public void resume(String groupName, StorageType storageType) {
079                    throw new UnsupportedOperationException();
080            }
081    
082            @Override
083            public void resume(
084                    String jobName, String groupName, StorageType storageType) {
085    
086                    throw new UnsupportedOperationException();
087            }
088    
089            @Override
090            public void schedule(
091                    Trigger trigger, String description, String destinationName,
092                    Message message, StorageType storageType) {
093    
094                    throw new UnsupportedOperationException();
095            }
096    
097            @Override
098            public void shutdown() {
099                    throw new UnsupportedOperationException();
100            }
101    
102            @Override
103            public void start() {
104                    throw new UnsupportedOperationException();
105            }
106    
107            @Override
108            public void suppressError(
109                    String jobName, String groupName, StorageType storageType) {
110    
111                    throw new UnsupportedOperationException();
112            }
113    
114            @Override
115            public void unschedule(String groupName, StorageType storageType) {
116                    throw new UnsupportedOperationException();
117            }
118    
119            @Override
120            public void unschedule(
121                    String jobName, String groupName, StorageType storageType) {
122    
123                    throw new UnsupportedOperationException();
124            }
125    
126            @Override
127            public void update(Trigger trigger, StorageType storageType) {
128                    throw new UnsupportedOperationException();
129            }
130    
131    }