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

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

package com.github.restup.test.resource;

class ByteArrayContents implements Contents {

    private final byte[] bytes;

    ByteArrayContents(byte[] bytes) {
        this.bytes = bytes;
    }

    @Override
    public byte[] getContentAsByteArray() {
        return bytes;
    }

    @Override
    public String getContentAsString() {
        return new String(bytes);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy