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; |
755fd7
|
9 |
private CASServiceResponseProxySuccess proxySuccess; |
ARW |
10 |
private CASServiceResponseProxyFailure proxyFailure; |
8a5518
|
11 |
|
MP |
12 |
public CASServiceResponseAuthenticationFailure getAuthenticationFailure() { |
|
13 |
return this.authenticationFailure; |
|
14 |
} |
|
15 |
|
|
16 |
public void setAuthenticationFailure(final CASServiceResponseAuthenticationFailure authenticationFailure) { |
|
17 |
this.authenticationFailure = authenticationFailure; |
|
18 |
} |
|
19 |
|
|
20 |
public CASServiceResponseAuthenticationSuccess getAuthenticationSuccess() { |
|
21 |
return this.authenticationSuccess; |
|
22 |
} |
|
23 |
|
|
24 |
public void setAuthenticationSuccess(final CASServiceResponseAuthenticationSuccess authenticationSuccess) { |
|
25 |
this.authenticationSuccess = authenticationSuccess; |
|
26 |
} |
755fd7
|
27 |
|
ARW |
28 |
public CASServiceResponseProxySuccess getProxySuccess() { |
|
29 |
return this.proxySuccess; |
|
30 |
} |
|
31 |
|
|
32 |
public void setProxySuccess(final CASServiceResponseProxySuccess proxySuccess) { |
|
33 |
this.proxySuccess = proxySuccess; |
|
34 |
} |
|
35 |
|
|
36 |
public CASServiceResponseProxyFailure getProxyFailure() { |
|
37 |
return this.proxyFailure; |
|
38 |
} |
|
39 |
|
|
40 |
public void setProxyFailure(final CASServiceResponseProxyFailure proxyFailure) { |
|
41 |
this.proxyFailure = proxyFailure; |
|
42 |
} |
8a5518
|
43 |
} |