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

org.jetlinks.zlmedia.restful.RestfulResponse Maven / Gradle / Ivy

The newest version!
package org.jetlinks.zlmedia.restful;

import lombok.Getter;
import lombok.Setter;
import org.jetlinks.zlmedia.exception.ZLMediaException;

@Getter
@Setter
public class RestfulResponse {
    private int code;
    private String msg;
    private T data;
    private Integer result;

    public T getDataOrElse(T orElse) {
        return data == null ? orElse : data;
    }

    public RestfulResponse assertSuccess() {
        if (code != 0) {
            throw new ZLMediaException(msg);
        }
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy