mirror of
https://github.com/Tribufu/TribufuJava
synced 2026-08-09 04:41:08 +00:00
parent
68f92bca97
commit
4ba26d707d
10 changed files with 109 additions and 4 deletions
13
lib/src/main/java/com/tribufu/oauth2/OAuth2CodeResponse.java
Normal file
13
lib/src/main/java/com/tribufu/oauth2/OAuth2CodeResponse.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue