├── .azure-pipelines ├── buildAndPackage.yml ├── prValidate.yml └── templates │ ├── alert-failure.yml │ ├── build.yml │ ├── checkout-and-credscan.yml │ ├── install-java.yml │ ├── publish-artefacts.yml │ └── secure-files.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── README.md ├── THIRD PARTY NOTICES ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── scripts ├── getLatestVersion.ps1 └── validateMavenVersion.ps1 ├── settings.gradle └── src ├── main └── java │ └── com │ └── microsoft │ └── graph │ └── auth │ ├── AuthConstants.java │ ├── BaseAuthentication.java │ ├── confidentialClient │ ├── AuthorizationCodeProvider.java │ └── ClientCredentialProvider.java │ ├── enums │ └── NationalCloud.java │ └── publicClient │ └── UsernamePasswordProvider.java └── test └── java └── com └── microsoft └── graph └── auth ├── BaseAuthenticationTests.java ├── confidentialClient ├── AuthorizationCodeProviderTests.java └── ClientCredentialProviderTests.java └── publicClient └── UsernamePasswordProviderTests.java /.azure-pipelines/buildAndPackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/.azure-pipelines/buildAndPackage.yml -------------------------------------------------------------------------------- /.azure-pipelines/prValidate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/.azure-pipelines/prValidate.yml -------------------------------------------------------------------------------- /.azure-pipelines/templates/alert-failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/.azure-pipelines/templates/alert-failure.yml -------------------------------------------------------------------------------- /.azure-pipelines/templates/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/.azure-pipelines/templates/build.yml -------------------------------------------------------------------------------- /.azure-pipelines/templates/checkout-and-credscan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/.azure-pipelines/templates/checkout-and-credscan.yml -------------------------------------------------------------------------------- /.azure-pipelines/templates/install-java.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/.azure-pipelines/templates/install-java.yml -------------------------------------------------------------------------------- /.azure-pipelines/templates/publish-artefacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/.azure-pipelines/templates/publish-artefacts.yml -------------------------------------------------------------------------------- /.azure-pipelines/templates/secure-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/.azure-pipelines/templates/secure-files.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/README.md -------------------------------------------------------------------------------- /THIRD PARTY NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/THIRD PARTY NOTICES -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/gradlew.bat -------------------------------------------------------------------------------- /scripts/getLatestVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/scripts/getLatestVersion.ps1 -------------------------------------------------------------------------------- /scripts/validateMavenVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/scripts/validateMavenVersion.ps1 -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/com/microsoft/graph/auth/AuthConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/src/main/java/com/microsoft/graph/auth/AuthConstants.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/graph/auth/BaseAuthentication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/src/main/java/com/microsoft/graph/auth/BaseAuthentication.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/graph/auth/confidentialClient/AuthorizationCodeProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/src/main/java/com/microsoft/graph/auth/confidentialClient/AuthorizationCodeProvider.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/graph/auth/confidentialClient/ClientCredentialProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/src/main/java/com/microsoft/graph/auth/confidentialClient/ClientCredentialProvider.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/graph/auth/enums/NationalCloud.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/src/main/java/com/microsoft/graph/auth/enums/NationalCloud.java -------------------------------------------------------------------------------- /src/main/java/com/microsoft/graph/auth/publicClient/UsernamePasswordProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/src/main/java/com/microsoft/graph/auth/publicClient/UsernamePasswordProvider.java -------------------------------------------------------------------------------- /src/test/java/com/microsoft/graph/auth/BaseAuthenticationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/src/test/java/com/microsoft/graph/auth/BaseAuthenticationTests.java -------------------------------------------------------------------------------- /src/test/java/com/microsoft/graph/auth/confidentialClient/AuthorizationCodeProviderTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/src/test/java/com/microsoft/graph/auth/confidentialClient/AuthorizationCodeProviderTests.java -------------------------------------------------------------------------------- /src/test/java/com/microsoft/graph/auth/confidentialClient/ClientCredentialProviderTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/src/test/java/com/microsoft/graph/auth/confidentialClient/ClientCredentialProviderTests.java -------------------------------------------------------------------------------- /src/test/java/com/microsoft/graph/auth/publicClient/UsernamePasswordProviderTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-java-auth/HEAD/src/test/java/com/microsoft/graph/auth/publicClient/UsernamePasswordProviderTests.java --------------------------------------------------------------------------------