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

com.barchart.ondemand.api.OnDemandRequest Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.barchart.ondemand.api;

import java.util.Map;

import com.barchart.ondemand.api.responses.ResponseBase;

public interface OnDemandRequest {

	public enum GenericRequestField {
		QUARTER("Quarter"), ANNUAL("Annual");

		private final String value;

		private GenericRequestField(String value) {
			this.value = value;
		}

		public String getValue() {
			return value;
		}
	}

	public static String BASE_URL = "http://ondemand.websol.barchart.com/";

	String endpoint();

	String name();

	Map parameters();

	Class responseType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy