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

github-actions
2024-07-18 574784c711e467ac0c4ff15ecafc7b86a733fc3e
commit | author | age
755fd7 1 package org.keycloak.protocol.cas.representations;
ARW 2
3 import jakarta.xml.bind.annotation.XmlAccessType;
4 import jakarta.xml.bind.annotation.XmlAccessorType;
5 import jakarta.xml.bind.annotation.XmlAttribute;
6 import jakarta.xml.bind.annotation.XmlValue;
7
8 @XmlAccessorType(XmlAccessType.FIELD)
9 public class CASServiceResponseProxyFailure {
10     @XmlAttribute
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 }