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

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

The newest version!
package org.sourcelab.github.client.response.parser;

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

import java.io.IOException;

public class AuthenticatedUserParser implements ResponseParser {

    @Override
    public AuthenticatedUser parseResponse(final HttpResult result) throws IOException {
        final AuthenticatedUser response = JacksonFactory.newInstance().readValue(result.getContent(), AuthenticatedUser.class);
        return response;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy