-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c46474
commit b9963d0
Showing
17 changed files
with
157 additions
and
107 deletions.
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
28 changes: 12 additions & 16 deletions
28
Quick_ACG/src/main/java/com/docusign/core/model/Session.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,33 @@ | ||
package com.docusign.core.model; | ||
|
||
import com.docusign.esign.client.auth.OAuth; | ||
import lombok.Data; | ||
import org.springframework.context.annotation.Scope; | ||
import org.springframework.context.annotation.ScopedProxyMode; | ||
import org.springframework.stereotype.Component; | ||
import org.springframework.web.context.WebApplicationContext; | ||
|
||
import java.io.Serializable; | ||
import java.util.List; | ||
import java.util.UUID; | ||
|
||
@Component | ||
@Scope(value = WebApplicationContext.SCOPE_SESSION, | ||
proxyMode = ScopedProxyMode.TARGET_CLASS) | ||
@Scope(value = WebApplicationContext.SCOPE_SESSION, proxyMode = ScopedProxyMode.TARGET_CLASS) | ||
@Data | ||
public class Session implements Serializable { | ||
private static final long serialVersionUID = 2695379118371574037L; | ||
|
||
public Long tokenExpirationTime; | ||
|
||
private String accountId; | ||
|
||
private String accountName; | ||
|
||
private String basePath; | ||
private String statusCFR; | ||
private String roomsBasePath; | ||
|
||
private String envelopeId; | ||
private String templateId; | ||
private String templateName; | ||
private String permissionProfileId; | ||
private String permissionProfileName; | ||
private String apiIndexPath; | ||
private boolean refreshToken = false; | ||
private String clickwrapId; | ||
private String clickwrapVersionNumber; | ||
private String exportId; | ||
private String importId; | ||
private UUID orgId; | ||
public UUID bulkListId; | ||
|
||
private String statusCFR; | ||
|
||
private Boolean isPKCEWorking = true; | ||
} |
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.