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

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

The newest version!

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

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

import java.io.IOException;

/**
 * Parses 204 response codes into Booleans.
 */
public class Http202ResponseParser implements ResponseParser {
    @Override
    public Boolean parseResponse(final HttpResult result) throws IOException {
        if (result.getStatus() == 202) {
            return true;
        }
        return false;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy