Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
f9acadc
Setup gradle project
deepak2016 Oct 25, 2018
0e8c72d
Adding HttpClient and middleware classes
deepak2016 Nov 21, 2018
00e7584
Updating httpClient with default creation logic
deepak2016 Nov 21, 2018
7b9154e
Adding batch request content files
deepak2016 Nov 26, 2018
ed236bd
Taking dependency on json-simple library
deepak2016 Nov 26, 2018
fc3dfae
Test files for middlewares classes
deepak2016 Jan 3, 2019
2351867
Add test files for Authentication handler and clean test file for bat…
deepak2016 Jan 16, 2019
bdc8a32
Add test file for Redirect Handler middleware
deepak2016 Jan 16, 2019
c86ca67
Add test file for retry handler middleware
deepak2016 Jan 16, 2019
b38f977
Updating test files for middlewares and HttpClient
deepak2016 Jan 17, 2019
266331e
Updating build setting to include apache httpclient as an API dependency
deepak2016 Jan 17, 2019
0ecb41c
Update variables used in Retry and Redirect handler tests.
deepak2016 Jan 17, 2019
9b38515
Update getRedirect logic in RedirectHandler
deepak2016 Jan 18, 2019
f1c1de5
Add support to redirect when status code received is 308 in RedirectH…
deepak2016 Jan 18, 2019
6ef4465
BatchResponseContent - remove unsed import statements
deepak2016 Jan 18, 2019
3df3bd3
Update RetryHandler options like delay and retryInterval
deepak2016 Jan 18, 2019
84a405a
Fix review comments on PR: https://github.com/microsoftgraph/msgraph-…
deepak2016 Jan 21, 2019
7535525
Fixing review comments on PR : https://github.com/microsoftgraph/msgr…
deepak2016 Jan 21, 2019
05ab9f4
Add more test cases for Content classes and Redirect Handler to incre…
deepak2016 Jan 21, 2019
ae3ced1
Give meaningful names to test methods in test classes.
deepak2016 Jan 21, 2019
81bcacf
Merge pull request #2 from microsoftgraph/middleware
deepak2016 Jan 21, 2019
00b01c7
Add middleware options classes to enable middleware custom configurat…
deepak2016 Jan 23, 2019
ae5dfeb
Add retry handler test with retry options
deepak2016 Jan 23, 2019
cd70c24
Merge pull request #6 from microsoftgraph/middlewareoption
deepak2016 Jan 25, 2019
eda6444
Update gradle script with code to publish
deepak2016 Jan 25, 2019
d0f85b2
Merge pull request #7 from microsoftgraph/publish-script
deepak2016 Feb 11, 2019
bbe81bf
Update readme and add license file.
deepak2016 Feb 11, 2019
fbbb08e
Add jcenter url in readme
deepak2016 Feb 11, 2019
40f682c
Merge pull request #8 from microsoftgraph/updateReadme
deepak2016 Feb 11, 2019
ac9d650
Changing iAuthenticationProvider interface to access http request.
deepak2016 Feb 11, 2019
eef4fe9
Merge pull request #9 from microsoftgraph/updateReadme
deepak2016 Feb 11, 2019
1ec6286
Changes to move dependency from Apache HttpClient to OkHttp in httpco…
deepak2016 Feb 26, 2019
d644fda
Added okhttp to batch request, redirect
Mar 4, 2019
76a447d
Added redirect options
NakulSabharwal Mar 7, 2019
4cb3031
Migrated batching to OkHttp
NakulSabharwal Mar 7, 2019
ce595eb
Migrated redirect, retry handlers and retry options to okhttp
NakulSabharwal Mar 7, 2019
c6f7886
Migrated HttpClient and tests to okhttp
NakulSabharwal Mar 7, 2019
339089f
Added comments and removed suppressed warning
Mar 8, 2019
2fd92f6
Changed IAuthenticationProvider to ICoreAuthenticationProvider
Mar 8, 2019
403c32d
Edited readme
Mar 8, 2019
32ef267
edited contributor list
NakulSabharwal Mar 8, 2019
fbe12a7
Added null check on removing id in dependsOn
Mar 8, 2019
81d4291
Merge pull request #12 from microsoftgraph/edit-readme
NakulSabharwal Mar 8, 2019
e731df3
Reordered should retry parameters
Mar 8, 2019
7e6125a
Merge pull request #11 from microsoftgraph/okhttp
NakulSabharwal Mar 8, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/.gradle/
/build/
/bin/

#Eclipse
.project
.classpath
.settings

# Maven
/target/
/pom.xml
local.properties
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 Microsoft Graph

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading