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

com.oath.micro.server.health.ErrorEvent Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package com.oath.micro.server.health;

import java.io.Serializable;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.function.Function;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;
import javax.xml.bind.annotation.XmlType;

import com.oath.micro.server.errors.BaseException;
import com.oath.micro.server.errors.ErrorCode;
import com.oath.micro.server.errors.Severity;

import lombok.Getter;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "error-event")
@XmlType(name = "")
public class ErrorEvent implements Serializable {

    private static final long serialVersionUID = 1L;

    @Getter
    private final Date time = new Date();

    @XmlElement(name = "formatted-date")
    private final String formattedDate = new SimpleDateFormat(
                                                              "yyyy.MM.dd 'at' HH:mm:ss z").format(new Date());

    @XmlElement(name = "error-code")
    @Getter
    private final ErrorCode code;

    @XmlElement(name = "error-message")
    @Getter
    private final String message;

    @XmlTransient
    @Getter
    private final boolean fatal;

    public ErrorEvent() {
        code = null;
        message = null;
        fatal = false;
    }

    public ErrorEvent(final BaseException exception) {
        code = exception.getErrorCode();
        message = exception.getMessage();
        fatal = Severity.FATAL.equals(code.getSeverity());
    }

    public  R visit(Function fatalError, Function nonFatalError) {
        return fatal ? fatalError.apply(this) : nonFatalError.apply(this);

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy