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

com.thoughtworks.webstub.dsl.builders.StringContentBuilder Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
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