
com.thoughtworks.webstub.dsl.builders.StringContentBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-stub Show documentation
Show all versions of web-stub Show documentation
Library for stubbing external HTTP dependencies
package com.thoughtworks.webstub.dsl.builders;
public class StringContentBuilder implements ContentBuilder {
private String content;
public StringContentBuilder(String content) {
this.content = content;
}
@Override
public String build() {
return content;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy