Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
feat: Add REST AIP-151 LRO support (#1484)
* feat: Add REST AIP-151 LRO support * reformat code
- Loading branch information
Showing
with
468 additions
and 65 deletions.
- +9 −2 gax-grpc/src/main/java/com/google/api/gax/grpc/ProtoOperationTransformers.java
- +5 −6 gax-grpc/src/test/java/com/google/api/gax/grpc/ProtoOperationTransformersTest.java
- +6 −0 gax-httpjson/src/main/java/com/google/api/gax/httpjson/ApiMessageHttpResponseParser.java
- +6 −0 gax-httpjson/src/main/java/com/google/api/gax/httpjson/HttpJsonCallOptions.java
- +17 −2 gax-httpjson/src/main/java/com/google/api/gax/httpjson/HttpJsonCallSettings.java
- +1 −1 gax-httpjson/src/main/java/com/google/api/gax/httpjson/HttpJsonCallableFactory.java
- +9 −0 gax-httpjson/src/main/java/com/google/api/gax/httpjson/HttpJsonDirectCallable.java
- +26 −13 gax-httpjson/src/main/java/com/google/api/gax/httpjson/HttpJsonOperationSnapshot.java
- +50 −0 gax-httpjson/src/main/java/com/google/api/gax/httpjson/HttpJsonStatusCode.java
- +5 −1 gax-httpjson/src/main/java/com/google/api/gax/httpjson/HttpRequestRunnable.java
- +11 −0 gax-httpjson/src/main/java/com/google/api/gax/httpjson/HttpResponseParser.java
- +21 −5 gax-httpjson/src/main/java/com/google/api/gax/httpjson/ProtoMessageResponseParser.java
- +80 −9 gax-httpjson/src/main/java/com/google/api/gax/httpjson/ProtoOperationTransformers.java
- +14 −4 gax-httpjson/src/main/java/com/google/api/gax/httpjson/ProtoRestSerializer.java
- +58 −3 gax-httpjson/src/main/java/com/google/api/gax/httpjson/longrunning/stub/HttpJsonOperationsStub.java
- +5 −0 gax-httpjson/src/main/java/com/google/api/gax/httpjson/longrunning/stub/OperationsStub.java
- +6 −0 gax-httpjson/src/test/java/com/google/api/gax/httpjson/ApiMessageHttpRequestTest.java
- +6 −0 gax-httpjson/src/test/java/com/google/api/gax/httpjson/HttpJsonDirectCallableTest.java
- +15 −10 gax-httpjson/src/test/java/com/google/api/gax/httpjson/HttpJsonOperationSnapshotTest.java
- +11 −0 gax-httpjson/src/test/java/com/google/api/gax/httpjson/HttpRequestRunnableTest.java
- +6 −0 gax-httpjson/src/test/java/com/google/api/gax/httpjson/MockHttpServiceTest.java
- +10 −0 gax-httpjson/src/test/java/com/google/api/gax/httpjson/ProtoMessageResponseParserTest.java
- +91 −9 gax-httpjson/src/test/java/com/google/api/gax/httpjson/ProtoOperationTransformersTest.java
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.