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

com.blackbirdai.client.model.UploadResponse Maven / Gradle / Ivy

package com.blackbirdai.client.model;

import org.jboss.netty.handler.codec.http.HttpResponse;

/**
 * Container for upload response.
 */
public class UploadResponse extends Response {
    public UploadResponse(HttpResponse response) {
        super(response);
    }

    public UploadResponse(boolean success, int statusCode, String message, String rawJson) {
        super(success, statusCode, message, rawJson);
    }

    public UploadResponse(boolean success, String message) {
        this(success, -1, message, "");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy