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

com.dg.libs.rest.handlers.DefaultResponseStatusHandler Maven / Gradle / Ivy

package com.dg.libs.rest.handlers;

import com.dg.libs.rest.domain.ResponseStatus;

public class DefaultResponseStatusHandler implements ResponseStatusHandler {

	public DefaultResponseStatusHandler() {
		super();
	}

	@Override
	public boolean hasErrorInStatus(ResponseStatus status) {
		return (status.getStatusCode() < 200 || status.getStatusCode() >= 300); 
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy