commit | author | age
|
513246
|
1 |
package org.keycloak.protocol.cas.representations; |
MP |
2 |
|
fdb9f6
|
3 |
import jakarta.xml.bind.annotation.XmlAccessType; |
JK |
4 |
import jakarta.xml.bind.annotation.XmlAccessorType; |
|
5 |
import jakarta.xml.bind.annotation.XmlAttribute; |
|
6 |
import jakarta.xml.bind.annotation.XmlValue; |
513246
|
7 |
|
MP |
8 |
@XmlAccessorType(XmlAccessType.FIELD) |
8a5518
|
9 |
public class CASServiceResponseAuthenticationFailure { |
513246
|
10 |
@XmlAttribute |
MP |
11 |
private String code; |
|
12 |
@XmlValue |
|
13 |
private String description; |
|
14 |
|
|
15 |
public String getCode() { |
|
16 |
return this.code; |
|
17 |
} |
|
18 |
|
|
19 |
public void setCode(final String code) { |
|
20 |
this.code = code; |
|
21 |
} |
|
22 |
|
|
23 |
public String getDescription() { |
|
24 |
return this.description; |
|
25 |
} |
|
26 |
|
|
27 |
public void setDescription(final String description) { |
|
28 |
this.description = description; |
|
29 |
} |
|
30 |
} |