mirror of https://github.com/jacekkow/keycloak-protocol-cas

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