/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.smartitengineering.user.client.api; /** * * @author modhu7 */ public interface GeoLocation { public Double getLatitude(); public Double getLongitude(); public void setLatitude(Double latitude); public void setLongitude(Double longitude); }