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

com.aventstack.chaintest.domain.Log Maven / Gradle / Ivy

The newest version!
package com.aventstack.chaintest.domain;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@Getter
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
public class Log {

    private String message;

    public Log(final String message) {
        this.message = message;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy