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

github-actions
2022-07-28 8b93a7b3bc325c9ef9b0606dac64e54a4e1e6975
commit | author | age
513246 1 package org.keycloak.protocol.cas.representations;
MP 2
3 import javax.xml.bind.annotation.XmlAccessType;
4 import javax.xml.bind.annotation.XmlAccessorType;
5 import javax.xml.bind.annotation.XmlAttribute;
6 import javax.xml.bind.annotation.XmlValue;
7
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 }