1 package fr.paris.lutece.plugins.gis.service;
2
3
4 import java.rmi.RemoteException;
5
6 import javax.servlet.http.HttpServletRequest;
7
8 import fr.paris.lutece.plugins.gis.business.LonLat;
9
10
11
12
13
14 public interface IAddressServiceFacade {
15
16
17
18
19
20
21
22
23
24
25
26 public LonLat getGeolocalization(final HttpServletRequest request, String address, String strSRID)
27 throws RemoteException;
28
29
30
31
32
33
34
35
36
37
38
39
40 public String getInverseGeolocalization(final HttpServletRequest request, LonLat lonLat, String strSRID)
41 throws RemoteException;
42 }