001/* 002 * This library is part of OpenCms - 003 * the Open Source Content Management System 004 * 005 * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com) 006 * 007 * This library is free software; you can redistribute it and/or 008 * modify it under the terms of the GNU Lesser General Public 009 * License as published by the Free Software Foundation; either 010 * version 2.1 of the License, or (at your option) any later version. 011 * 012 * This library is distributed in the hope that it will be useful, 013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 015 * Lesser General Public License for more details. 016 * 017 * For further information about Alkacon Software, please see the 018 * company website: http://www.alkacon.com 019 * 020 * For further information about OpenCms, please see the 021 * project website: http://www.opencms.org 022 * 023 * You should have received a copy of the GNU Lesser General Public 024 * License along with this library; if not, write to the Free Software 025 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 026 */ 027 028package org.opencms.ui.apps.scheduler; 029 030import org.opencms.security.CmsRole; 031import org.opencms.ui.CmsCssIcon; 032import org.opencms.ui.apps.A_CmsWorkplaceAppConfiguration; 033import org.opencms.ui.apps.CmsWorkplaceAppManager; 034import org.opencms.ui.apps.I_CmsWorkplaceApp; 035import org.opencms.ui.apps.I_CmsWorkplaceAppConfiguration; 036 037import java.util.Locale; 038 039import com.vaadin.server.Resource; 040 041/** 042 * App configuration for the job scheduler.<p> 043 */ 044public class CmsScheduledJobsAppConfig extends A_CmsWorkplaceAppConfiguration { 045 046 /** The app id. */ 047 public static final String APP_ID = "scheduledjobs"; 048 049 /** The app icon resource (size 32x32). */ 050 public static final CmsCssIcon ICON = new CmsCssIcon("oc-icon-32-scheduler"); 051 052 /** 053 * @see org.opencms.ui.apps.I_CmsWorkplaceAppConfiguration#getAppCategory() 054 */ 055 @Override 056 public String getAppCategory() { 057 058 return CmsWorkplaceAppManager.ADMINISTRATION_CATEGORY_ID; 059 } 060 061 /** 062 * @see org.opencms.ui.apps.I_CmsWorkplaceAppConfiguration#getAppInstance() 063 */ 064 public I_CmsWorkplaceApp getAppInstance() { 065 066 return new CmsJobManagerApp(); 067 } 068 069 /** 070 * @see org.opencms.ui.apps.I_CmsWorkplaceAppConfiguration#getHelpText(java.util.Locale) 071 */ 072 @Override 073 public String getHelpText(Locale locale) { 074 075 return org.opencms.workplace.tools.scheduler.Messages.get().getBundle(locale).key( 076 org.opencms.workplace.tools.scheduler.Messages.GUI_JOBS_ADMIN_TOOL_HELP_0); 077 } 078 079 /** 080 * @see org.opencms.ui.apps.I_CmsWorkplaceAppConfiguration#getIcon() 081 */ 082 public Resource getIcon() { 083 084 return ICON; 085 } 086 087 /** 088 * @see org.opencms.ui.apps.I_CmsWorkplaceAppConfiguration#getId() 089 */ 090 public String getId() { 091 092 return APP_ID; 093 } 094 095 /** 096 * @see org.opencms.ui.apps.I_CmsWorkplaceAppConfiguration#getName(java.util.Locale) 097 */ 098 @Override 099 public String getName(Locale locale) { 100 101 return org.opencms.workplace.tools.scheduler.Messages.get().getBundle(locale).key( 102 org.opencms.workplace.tools.scheduler.Messages.GUI_JOBS_ADMIN_TOOL_SHORTNAME_0); 103 } 104 105 /** 106 * @see org.opencms.ui.apps.I_CmsWorkplaceAppConfiguration#getOrder() 107 */ 108 @Override 109 public int getOrder() { 110 111 return 40; 112 } 113 114 /** 115 * @see org.opencms.ui.apps.I_CmsWorkplaceAppConfiguration#getPriority() 116 */ 117 @Override 118 public int getPriority() { 119 120 return I_CmsWorkplaceAppConfiguration.DEFAULT_PRIORIY; 121 } 122 123 /** 124 * @see org.opencms.ui.apps.A_CmsWorkplaceAppConfiguration#getRequiredRole() 125 */ 126 @Override 127 public CmsRole getRequiredRole() { 128 129 return CmsRole.WORKPLACE_MANAGER; 130 } 131}