commit | author | age
|
8a5518
|
1 |
package org.keycloak.protocol.cas.representations; |
MP |
2 |
|
fdb9f6
|
3 |
import jakarta.xml.bind.annotation.XmlRootElement; |
8a5518
|
4 |
|
MP |
5 |
@XmlRootElement(name = "serviceResponse") |
|
6 |
public class CASServiceResponse { |
|
7 |
private CASServiceResponseAuthenticationFailure authenticationFailure; |
|
8 |
private CASServiceResponseAuthenticationSuccess authenticationSuccess; |
|
9 |
|
|
10 |
public CASServiceResponseAuthenticationFailure getAuthenticationFailure() { |
|
11 |
return this.authenticationFailure; |
|
12 |
} |
|
13 |
|
|
14 |
public void setAuthenticationFailure(final CASServiceResponseAuthenticationFailure authenticationFailure) { |
|
15 |
this.authenticationFailure = authenticationFailure; |
|
16 |
} |
|
17 |
|
|
18 |
public CASServiceResponseAuthenticationSuccess getAuthenticationSuccess() { |
|
19 |
return this.authenticationSuccess; |
|
20 |
} |
|
21 |
|
|
22 |
public void setAuthenticationSuccess(final CASServiceResponseAuthenticationSuccess authenticationSuccess) { |
|
23 |
this.authenticationSuccess = authenticationSuccess; |
|
24 |
} |
|
25 |
} |