
com.mangofactory.swagger.models.dto.ResponseMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-models Show documentation
Show all versions of swagger-models Show documentation
This project integrates swagger with the Spring Web MVC framework
The newest version!
package com.mangofactory.swagger.models.dto;
import com.fasterxml.jackson.annotation.JsonInclude;
public class ResponseMessage {
private final int code;
@JsonInclude(JsonInclude.Include.ALWAYS)
private final String message;
private final String responseModel;
public ResponseMessage(int code, String message, String responseModel) {
this.code = code;
this.message = message;
this.responseModel = responseModel;
}
public int getCode() {
return code;
}
public String getMessage() {
return message;
}
public String getResponseModel() {
return responseModel;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy