Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
sso
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
曲欣亮
sso
Commits
385053b5
Commit
385053b5
authored
Jul 24, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
2499d0e4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
10 deletions
+0
-10
OAuthApi.java
src/main/java/com/egolm/sso/api/OAuthApi.java
+0
-1
OAuthConfig.java
src/main/java/com/egolm/sso/api/OAuthConfig.java
+0
-9
No files found.
src/main/java/com/egolm/sso/api/OAuthApi.java
View file @
385053b5
...
@@ -44,7 +44,6 @@ public interface OAuthApi {
...
@@ -44,7 +44,6 @@ public interface OAuthApi {
builder
.
setResponseType
(
OAuth
.
OAUTH_CODE
);
builder
.
setResponseType
(
OAuth
.
OAUTH_CODE
);
builder
.
setClientId
(
config
.
getClientId
());
builder
.
setClientId
(
config
.
getClientId
());
builder
.
setRedirectURI
(
config
.
getRediretUrl
());
builder
.
setRedirectURI
(
config
.
getRediretUrl
());
builder
.
setScope
(
config
.
getClientScope
());
OAuthClientRequest
oauthResponse
=
builder
.
buildQueryMessage
();
OAuthClientRequest
oauthResponse
=
builder
.
buildQueryMessage
();
response
.
sendRedirect
(
oauthResponse
.
getLocationUri
());
response
.
sendRedirect
(
oauthResponse
.
getLocationUri
());
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
...
...
src/main/java/com/egolm/sso/api/OAuthConfig.java
View file @
385053b5
...
@@ -8,7 +8,6 @@ public class OAuthConfig implements Serializable{
...
@@ -8,7 +8,6 @@ public class OAuthConfig implements Serializable{
private
String
clientId
;
private
String
clientId
;
private
String
clientSecret
;
private
String
clientSecret
;
private
String
clientScope
;
private
String
rediretUrl
;
private
String
rediretUrl
;
private
String
authorizeUrl
;
private
String
authorizeUrl
;
private
String
accessTokenUrl
;
private
String
accessTokenUrl
;
...
@@ -29,14 +28,6 @@ public class OAuthConfig implements Serializable{
...
@@ -29,14 +28,6 @@ public class OAuthConfig implements Serializable{
this
.
clientSecret
=
clientSecret
;
this
.
clientSecret
=
clientSecret
;
}
}
public
String
getClientScope
()
{
return
clientScope
;
}
public
void
setClientScope
(
String
clientScope
)
{
this
.
clientScope
=
clientScope
;
}
public
String
getAuthorizeUrl
()
{
public
String
getAuthorizeUrl
()
{
return
authorizeUrl
;
return
authorizeUrl
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment