com.lyncode.testy.http.StringBodyContentBuilder Maven / Gradle / Ivy
package com.lyncode.testy.http;
public class StringBodyContentBuilder extends BodyContentBuilder {
private String body;
public StringBodyContentBuilder(String body) {
this.body = body;
}
@Override
String build() {
return body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy