Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GRANDGERARD Gilles
keycloak-protocol-cas
Commits
5a0869a7
Commit
5a0869a7
authored
Feb 05, 2017
by
Matthias Piepkorn
Browse files
Handle service ticket validation on proxyValidate endpoint, return error on proxy endpoint
parent
5ba0b037
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/keycloak/protocol/cas/CASLoginProtocolService.java
View file @
5a0869a7
...
...
@@ -69,12 +69,13 @@ public class CASLoginProtocolService {
@Path
(
"proxyValidate"
)
public
Object
proxyValidate
()
{
return
null
;
//TODO implement
return
serviceValidate
();
}
@Path
(
"proxy"
)
public
Object
proxy
()
{
return
null
;
return
Response
.
serverError
().
entity
(
"Not implemented"
).
build
()
;
}
@Path
(
"p3/serviceValidate"
)
...
...
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