nz.co.jsrsolutions.tideservice.geocoding.GoogleGeoCoderHttpGet.java Source code

Java tutorial

Introduction

Here is the source code for nz.co.jsrsolutions.tideservice.geocoding.GoogleGeoCoderHttpGet.java

Source

/* -*- mode: java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */

/*
 * @(#)GoogleGeoCoderHttpGet.java        
 *
 * Copyright (c) 2012 JSR Solutions Limited
 * 4 Viridian Lane, Auckland, 0632.  New Zealand
 * All rights reserved.
 *
 * This software is the confidential and proprietary information of JSR
 * Solutions Limited. ("Confidential Information").  You shall not
 * disclose such Confidential Information and shall use it only in
 * accordance with the terms of the license agreement you entered into
 * with JSR Solutions Limited.
 */

package nz.co.jsrsolutions.tideservice.geocoding;

import java.net.URI;

import org.apache.http.client.methods.HttpGet;

public class GoogleGeoCoderHttpGet extends HttpGet {

    public GoogleGeoCoderHttpGet(URI uri) {

        super(uri);

    }

}