io.keen.client.java.RequestParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keen-client-api-query Show documentation
Show all versions of keen-client-api-query Show documentation
Java Query Client API for Keen IO
package io.keen.client.java;
/**
* An interface implemented by a request parameter object.
*
* @author baumatron
* @param The type of arguments this parameter generates.
*/
abstract class RequestParameter {
/**
* Returns a jsonifiable object, such as a Map or a List, for a request parameter.
*
* @return A jsonifiable object, such as a Map or a List.
*/
abstract ArgsT constructParameterRequestArgs();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy