-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SEC-2688: CAS Proxy Ticket Authentication uses Service for host & port
- Loading branch information
Rob Winch
committed
Aug 15, 2014
1 parent
f50e058
commit 934937d
Showing
8 changed files
with
176 additions
and
21 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
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
23 changes: 23 additions & 0 deletions
23
...ramework/security/cas/web/authentication/defaultserviceauthenticationdetails-explicit.xml
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<beans xmlns="http://www.springframework.org/schema/beans" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" | ||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"> | ||
|
||
<bean id="serviceProperties" | ||
class="org.springframework.security.cas.ServiceProperties"> | ||
<property name="service" | ||
value="https://example.com/j_spring_security_cas"/> | ||
<property name="sendRenew" value="false"/> | ||
</bean> | ||
<bean id="serviceProperties2" | ||
class="org.springframework.security.cas.ServiceProperties"> | ||
<property name="service" | ||
value="https://example2.com/j_spring_security_cas"/> | ||
<property name="sendRenew" value="false"/> | ||
</bean> | ||
|
||
<bean class="org.springframework.security.cas.web.authentication.ServiceAuthenticationDetailsSource"> | ||
<constructor-arg ref="serviceProperties"/> | ||
</bean> | ||
</beans> |
15 changes: 15 additions & 0 deletions
15
...amework/security/cas/web/authentication/defaultserviceauthenticationdetails-passivity.xml
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<beans xmlns="http://www.springframework.org/schema/beans" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" | ||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"> | ||
|
||
<bean id="serviceProperties" | ||
class="org.springframework.security.cas.ServiceProperties"> | ||
<property name="service" | ||
value="https://example.com/j_spring_security_cas"/> | ||
<property name="sendRenew" value="false"/> | ||
</bean> | ||
|
||
<bean class="org.springframework.security.cas.web.authentication.ServiceAuthenticationDetailsSource"/> | ||
</beans> |
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