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

com.github.restup.test.resource.StringContents Maven / Gradle / Ivy

package com.github.restup.test.resource;

class StringContents implements Contents {

    private final String value;

    StringContents(String value) {
        this.value = value;
    }

    @Override
    public byte[] getContentAsByteArray() {
        return value.getBytes();
    }

    @Override
    public String getContentAsString() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy