Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.common.model;public class Response {private final String rejectedType;private final Object rejectedValue;private final String code;private final String message;public Response(String rejectedType, Object rejectedValue, String code,String message) {this.rejectedType=rejectedType;this.rejectedValue=rejectedValue;this.code=code;this.message=message;}public String getRejectedType() {return rejectedType;}public Object getRejectedValue() {return rejectedValue;}public String getCode() {return code;}public String getMessage() {return message;}}