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

io.castled.utils.ResponseUtils Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.utils;

import javax.ws.rs.core.Response;

public class ResponseUtils {

    public static boolean is2xx(Response response) {
        return response.getStatus() >= 200 && response.getStatus() < 300;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy