00001
00004 package org.openmobileis.bundle.osgi.terminal;
00005
00006 import org.openmobileis.common.util.exception.ServiceException;
00007 import org.openmobileis.common.util.log.LogManager;
00008 import org.openmobileis.modules.profiles.terminal.RubricLoader;
00009
00014 public final class OSGIOpenMISRubricLoad extends RubricLoader {
00015
00019 public OSGIOpenMISRubricLoad() {
00020 }
00021
00022
00023
00024
00025 public String[] getServiceClassList() throws ServiceException {
00026 LogManager.traceDebug(0, "OSGIOpenMISRubricLoad getServiceClassList");
00027 return new String[]{
00028 "org.openmobileis.services.servlet.IndexServlet"
00029 ,"org.openmobileis.synchro.openmsp.client.services.DirectSynchroService"
00030 ,"org.openmobileis.synchro.openmsp.client.services.SynchroLoginService"
00031 ,"org.openmobileis.synchro.openmsp.client.services.SynchroJournalDisplayService"
00032 };
00033 }
00034
00035
00036
00037
00038 public void postLoadingInit() throws ServiceException {
00039 }
00040
00041
00042
00043
00044 public void preLoadingInit() throws ServiceException {
00045 }
00046
00047 }