com.openshift.restclient.http.IHttpStatusCodes Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2015 Red Hat, Inc. Distributed under license by Red Hat, Inc.
* All rights reserved. This program is made available under the terms of the
* Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Red Hat, Inc. - initial API and implementation
******************************************************************************/
package com.openshift.restclient.http;
/**
* HTTP Status codes
* @author jeff.cantrill
*
*/
public interface IHttpStatusCodes {
public static final int STATUS_OK = 200;
public static final int STATUS_INTERNAL_SERVER_ERROR = 500;
public static final int STATUS_BAD_REQUEST = 400;
public static final int STATUS_UNAUTHORIZED = 401;
public static final int STATUS_FORBIDDEN = 403;
public static final int STATUS_NOT_FOUND = 404;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy