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

com.clickntap.smart.SmartRequest Maven / Gradle / Ivy

There is a newer version: 1.30
Show newest version
package com.clickntap.smart;

import java.util.HashMap;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;

public class SmartRequest {
	private Map parameters = null;
	private String ref;

	public SmartRequest(String ref, HttpServletRequest request) {
		this.ref = ref;
		parameters = new HashMap();
		parameters.putAll(request.getParameterMap());
	}

	public String getRef() {
		return ref;
	}

	public Map getParameters() {
		return parameters;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy