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

com.xcase.msgraph.impl.simple.transputs.MSGraphResponseImpl Maven / Gradle / Ivy

/**
 * Copyright 2017 Xcase All rights reserved.
 */

package com.xcase.msgraph.impl.simple.transputs;

import com.xcase.msgraph.transputs.MSGraphResponse;


/**
 *
 * @author martin
 */
public class MSGraphResponseImpl implements MSGraphResponse {

    /**
     * HTTP response code of response.
     */
    protected int responseCode;
    /**
     * message of response.
     */
    protected String message;
    /**
     * status of response.
     */
    protected String status = "SUCCESS";

    public int getResponseCode() {
        return this.responseCode;
    }

    public void setResponseCode(int responseCode) {
        this.responseCode = responseCode;
    }

    /**
     * @return the message
     */
    public String getMessage() {
        return this.message;
    }

    /**
     * @param message the message to set
     */
    public void setMessage(String message) {
        this.message = message;
    }

    /**
     * @return the status
     */
    public String getStatus() {
        return this.status;
    }

    /**
     * @param status the status to set
     */
    public void setStatus(String status) {
        this.status = status;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy