io.restassured.internal.csrf.CsrfInputField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-assured Show documentation
Show all versions of rest-assured Show documentation
Java DSL for easy testing of REST services
package io.restassured.internal.csrf;
public class CsrfInputField {
public final String name;
public final String value;
public CsrfInputField(String name, String value) {
this.name = name;
this.value = value;
}
}