This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; |