00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 package org.openmobileis.modules.common.data;
00030
00031 import org.openmobileis.common.util.exception.DatabaseException;
00032 import org.openmobileis.common.util.exception.ServiceException;
00033
00042 public interface TerminalUserFactory {
00043
00044
00045 public String[] getTerminalUserIdsList();
00046
00047 public TerminalUser getTerminalUser(String id);
00048
00049 public TerminalUser getInstallTerminalUser();
00050
00051 public void setInstallTerminalUser(String id) throws ServiceException, DatabaseException;
00052
00053 public TerminalUser[] getAllTerminalUsers() throws DatabaseException;
00054
00058 public void addTerminalUser(TerminalUser rep) throws ServiceException, DatabaseException;
00059
00060 public void removeTerminalUser(String repId) throws ServiceException, DatabaseException;
00061 }