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

com.sap.ipe.ble.irp.handler.messages.Messages Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.sap.ipe.ble.irp.handler.messages;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.Setter;

/***
 * Messages is the POJO class created for messages to be shown
 */
@Getter @Setter
public class Messages {
    @JsonProperty("INFO")
    private String info;
    @JsonProperty("ERROR")
    private String error;
    @JsonProperty("WARNING")
    private String warning;
    @JsonProperty("SUCCESS")
    private String success;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy