Skip to content

Instantly share code, notes, and snippets.

View fahadwajed's full-sized avatar
🎯
Focusing

Fahad Wajed fahadwajed

🎯
Focusing
  • Ford Motor Company
  • Ottawa, Canada
  • 18:24 (UTC -04:00)
View GitHub Profile
@fahadwajed
fahadwajed / HttpStatusCodes.java
Created February 17, 2019 10:46 — forked from WSAyan/HttpStatusCodes.java
Java class with all the HTTP Status Codes.
/**
* Created by wahid.sadique on 5/5/2018.
*/
public final class HttpStatusCodes {
public static final int CONTINUE = 100;
public static final int SWITCHING_PROTOCOLS = 101;
public static final int PROCESSING = 102;
public static final int OK = 200;