List of usage examples for org.apache.commons.httpclient HttpStatus SC_MULTIPLE_CHOICES
int SC_MULTIPLE_CHOICES
To view the source code for org.apache.commons.httpclient HttpStatus SC_MULTIPLE_CHOICES.
Click Source Link
From source file:slash.navigation.rest.HttpRequest.java
public boolean isSuccessful() throws IOException { return getResult() >= HttpStatus.SC_OK && getResult() < HttpStatus.SC_MULTIPLE_CHOICES; }