8000 Add STATUS_CODE_CONFLICT (409) for users of the Compute API. · khggang/google-http-java-client@0c9c2f0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0c9c2f0

Browse files
paulwdavisejona86
authored andcommitted
Add STATUS_CODE_CONFLICT (409) for users of the Compute API.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=113183402
1 parent fb9ad07 commit 0c9c2f0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

google-http-client/src/main/java/com/google/api/client/http/HttpStatusCodes.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ public class HttpStatusCodes {
6060
/** Status code for a server that has not found anything matching the Request-URI. */
6161
public static final int STATUS_CODE_NOT_FOUND = 404;
6262

63+
/** Status code for a request that could not be completed due to a resource conflict. */
64+
public static final int STATUS_CODE_CONFLICT = 409;
65+
6366
/** Status code for an internal server error. */
6467
public static final int STATUS_CODE_SERVER_ERROR = 500;
6568

0 commit comments

Comments
 (0)
0