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

org.sourcelab.github.client.response.parser.StringResponseParser Maven / Gradle / Ivy

The newest version!

package org.sourcelab.github.client.response.parser;

import org.sourcelab.github.client.http.HttpResult;

public class StringResponseParser implements ResponseParser {
    @Override
    public String parseResponse(final HttpResult result) {
        return result.getContent();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy