![JAR search and dependency download from the Maven repository](/logo.png)
com.formkiq.server.api.ApiMessageResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greeting Show documentation
Show all versions of greeting Show documentation
Server-side integration for the FormKiQ ios application
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