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.client.conduit;
00027
00028 import org.openmobileis.common.user.UserNotFoundException;
00029 import org.openmobileis.common.util.exception.SynchroException;
00030
00040 public interface SynchroConduit {
00041
00046 public void setSynchroPath(String path);
00047
00052 public void setSynchroUserAgent(String userAgent);
00053
00057 public boolean isConnected();
00058
00063 public String sendRequest (ConduitParameter[] parameters, String request, String url) throws SynchroException, UserNotFoundException;
00064
00070 public void openRAS () throws SynchroException;
00071
00076 public void closeRAS () throws SynchroException;
00077
00082 public String getRASConnectionNames();
00083
00088 public String getIntallPath();
00089
00090
00091 }