File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
google-http-client/src/main/java/com/google/api/client/http Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,18 @@ public class HttpStatusCodes {
26
26
/** Status code for a successful request. */
27
27
public static final int STATUS_CODE_OK = 200 ;
28
28
29
- /** Status code for a successful request that has been fulfilled to create a new resource. */
29
+ /**
30
+ * Status code for a successful request that has been fulfilled
31
+ * to create a new resource.
32
+ */
30
33
public static final int STATUS_CODE_CREATED = 201 ;
31
34
35
+ /**
36
+ * Status code for a successful request that has been received
37
+ * but not yet acted upon.
38
+ */
39
+ public static final int STATUS_CODE_ACCEPTED = 202 ;
40
+
32
41
/**
33
42
* Status code for a successful request with no content information.
34
43
*
You can’t perform that action at this time.
0 commit comments