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

com.sportdataapi.util.ResponseQuery Maven / Gradle / Ivy

The newest version!
package com.sportdataapi.util;

import java.util.List;
import java.util.Map;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;

/**
 * Query Response information.
 * @author ralph
 *
 */
@JsonDeserialize(using=ResponseQueryDeserializer.class)
public class ResponseQuery {

	private Map queryValues;
	private List> errors;
	
	/**
	 * Constructor.
	 */
	public ResponseQuery() {
	}

	/**
	 * Returns the values used for the query (parameters)
	 * @return the queryValues
	 */
	public Map getQueryValues() {
		return queryValues;
	}

	/**
	 * ets the query parameters.
	 * @param queryValues the queryValues to set
	 */
	public void setQueryValues(Map queryValues) {
		this.queryValues = queryValues;
	}

	/**
	 * Returns the errors.
	 * @return the errors
	 */
	public List> getErrors() {
		return errors;
	}

	/**
	 * Sets the errors.
	 * @param errors the errors to set
	 */
	public void setErrors(List> errors) {
		this.errors = errors;
	}

	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy