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

rocks.bastion.core.ApiDataParameter Maven / Gradle / Ivy

package rocks.bastion.core;

/**
 * Represents a data parameter which is used for {@code application/x-www-form-urlencoded} data. You can supply these to
 * a {@link FormUrlEncodedRequest} to build the content body.
 */
public class ApiDataParameter extends ApiProperty {

    public ApiDataParameter(String name, String value) {
        super(name, value);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy