rocks.bastion.core.ApiQueryParam Maven / Gradle / Ivy
package rocks.bastion.core;
/**
* Simple data structure for holding a single instance of an HTTP request query parameter. Query parameters are provided
* as part of a requests URL following the question mark symbol.
*/
public class ApiQueryParam extends ApiProperty {
public ApiQueryParam(String name, String value) {
super(name, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy