
com.evasion.plugin.geoloc.GeolocEJB Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion.plugin.geoloc;
import com.evasion.plugin.GeolocEJBRemote;
import java.util.List;
import javax.ejb.Stateless;
/**
*
* @author sebastien.glon
*/
@Stateless
public class GeolocEJB implements GeolocEJBRemote {
@Override
public boolean dump(TypeDump type, String file) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public List listCountry() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public List listRegionAdm1(Country pays) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public List listRegionAdm2(Country pays, RegionAdm1 regionAdm1) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public List listCity(Country pays, Long codePostal) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public List listCity(String pays, Long codePostal) {
throw new UnsupportedOperationException("Not supported yet.");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy