Package org.sf.bee.commons.net.iplocation

Examples of org.sf.bee.commons.net.iplocation.IPLocation


   
    public IPLocation getIpLocation() {
        if (null != _request) {
            return _request.getIpLocation();
        }
        return new IPLocation("");
    }
View Full Code Here


            final String remoteAddress = this.getRemoteAddress();
            try {
                return IPLocator.getInstance().locate(remoteAddress);
            } catch (Throwable t) {
            }
            return new IPLocation("");
        }
    }
View Full Code Here

TOP

Related Classes of org.sf.bee.commons.net.iplocation.IPLocation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.