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

org.sourcelab.github.client.request.OctoCatRequest Maven / Gradle / Ivy

The newest version!
package org.sourcelab.github.client.request;

import org.sourcelab.github.client.response.parser.ResponseParser;
import org.sourcelab.github.client.response.parser.StringResponseParser;

public class OctoCatRequest extends GetRequest {
    @Override
    public String getPath() {
        return "/octocat";
    }

    @Override
    public ResponseParser getResponseParser() {
        return new StringResponseParser();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy