All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bytebybyte.mapquest.geocoding.service.request.GeocodeRequest Maven / Gradle / Ivy

package com.bytebybyte.mapquest.geocoding.service.request;

import java.util.Map;

import com.bytebybyte.mapquest.geocoding.service.IGeocodeRequest;

public class GeocodeRequest implements IGeocodeRequest {

	protected Map parameters;

	protected GeocodeRequest() {
	}

	public GeocodeRequest(Map parameters) {
		this.parameters = parameters;
	}

	@Override
	public Map getParameters() {
		return parameters;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy