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

com.formkiq.server.api.ApiMessageResponse Maven / Gradle / Ivy

The newest version!
package com.formkiq.server.api;

/**
 * Response Error Message Holder.
 *
 */
public class ApiMessageResponse {

    /**
     * Response identifier key.
     */
    private String id;

    /** Message. */
    private String message;

    /**
     * constructor.
     */
    public ApiMessageResponse() {
    }

    /**
     * constructor.
     * @param msg String
     */
    public ApiMessageResponse(final String msg) {
        this.id = null;
        this.message = msg;
    }

    /**
     * constructor.
     * @param msg String
     * @param ident String
     */
    public ApiMessageResponse(final String msg, final String ident) {
        this.message = msg;
        this.id = ident;
    }

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

    /**
     * @param msg String
     */
    public void setMessage(final String msg) {
        this.message = msg;
    }

    /**
     * @return {@link String}
     */
    public String getId() {
        return this.id;
    }

    /**
     * @param ident String
     */
    public void setId(final String ident) {
        this.id = ident;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy