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

shz.msg.SuccessMsg Maven / Gradle / Ivy

package shz.msg;

public interface SuccessMsg extends Message {
    @Override
    default boolean isOk() {
        return true;
    }

    @Override
    default int code() {
        return 200;
    }

    static SuccessMsg ok(String msg) {
        return () -> msg;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy