00001
00025 package org.openmobileis.module;
00026
00027 import org.openmobileis.common.util.exception.ServiceException;
00028 import org.openmobileis.modules.profiles.terminal.RubricLoader;
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 public final class OpenMisModuleRubricLoader extends RubricLoader {
00039
00043 public OpenMisModuleRubricLoader() {
00044 }
00045
00046
00047
00048
00049
00050 public String[] getServiceClassList() throws ServiceException{
00051 String[] ret = new String[3];
00052 ret[0]="org.openmobileis.synchro.openmsp.client.services.DirectSynchroService";
00053 ret[1]="org.openmobileis.synchro.openmsp.client.services.SynchroLoginService";
00054 ret[2]="org.openmobileis.synchro.openmsp.client.services.SynchroJournalDisplayService";
00055 return ret;
00056 }
00057
00058
00059
00060
00061
00062 public void postLoadingInit() throws ServiceException{
00063 }
00064
00065
00066
00067
00068
00069 public void preLoadingInit() throws ServiceException{
00070 }
00071
00072 }