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

Matthias Piepkorn
2017-01-29 8a55180284edc4f111d66f6e8b140408c7f7d160
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 }