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

github-actions
2024-09-10 20fd478783bf165ce023628477d26cc7c20b01f3
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 }