Add base oauth2 classes (#2)

* Update build.gradle

* Add oauth2 types
This commit is contained in:
Guilherme Werner 2023-12-24 08:22:15 -03:00 committed by GitHub
parent 68f92bca97
commit 4ba26d707d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 109 additions and 4 deletions

View file

@ -0,0 +1,13 @@
// Copyright (c) Tribufu. All Rights Reserved.
package com.tribufu.oauth2;
public class OAuth2CodeResponse {
public final String code;
public final String state;
public OAuth2CodeResponse(String code, String state) {
this.code = code;
this.state = state;
}
}