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 package org.openmobileis.synchro.openmsp.server.synctarget.proxy;
00027
00028 import org.openmobileis.synchro.openmsp.OpenMSPException;
00029 import org.openmobileis.synchro.openmsp.protocol.ContainerMessage;
00030 import org.openmobileis.synchro.openmsp.protocol.Message;
00031 import org.openmobileis.synchro.openmsp.server.util.FileSystem;
00032 import org.openmobileis.synchro.security.auth.Credential;
00033 import org.openmobileis.common.context.UserTerminal;
00034 import org.openmobileis.common.user.profile.Profile;
00035
00044 public interface ProxySyncroTarget {
00045
00046 public void executeOpenMSPCommande(Credential cred, String serviceName, ContainerMessage commande, Message answer, UserTerminal terminal, String version, Profile profil, FileSystem fileSystem) throws OpenMSPException;
00047 }