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

com.acrolinx.client.sdk.http.AcrolinxResponse Maven / Gradle / Ivy

/**
 * Copyright (c) 2019-present Acrolinx GmbH
 */

package com.acrolinx.client.sdk.http;

public class AcrolinxResponse
{
    private String result = "";
    private int status = 0;

    public String getResult()
    {
        return result;
    }

    public void setResult(String result)
    {
        this.result = result;
    }

    public int getStatus()
    {
        return status;
    }

    public void setStatus(int status)
    {
        this.status = status;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy