| | |
| | | @XmlAccessorType(XmlAccessType.FIELD) |
| | | public class CASServiceResponseAuthenticationSuccess { |
| | | private String user; |
| | | @XmlJavaTypeAdapter(AttributesMapAdapter.class) |
| | | private Map<String, Object> attributes; |
| | | private String proxyGrantingTicket; |
| | | @XmlElementWrapper |
| | | @XmlElement(name="proxy") |
| | | private List<String> proxies; |
| | | @XmlJavaTypeAdapter(AttributesMapAdapter.class) |
| | | private Map<String, Object> attributes; |
| | | |
| | | public String getUser() { |
| | | return this.user; |
| | |
| | | |
| | | public void setUser(final String user) { |
| | | this.user = user; |
| | | } |
| | | |
| | | public Map<String, Object> getAttributes() { |
| | | return this.attributes; |
| | | } |
| | | |
| | | public void setAttributes(final Map<String, Object> attributes) { |
| | | this.attributes = attributes; |
| | | } |
| | | |
| | | public String getProxyGrantingTicket() { |
| | |
| | | |
| | | public void setProxies(final List<String> proxies) { |
| | | this.proxies = proxies; |
| | | } |
| | | |
| | | public Map<String, Object> getAttributes() { |
| | | return this.attributes; |
| | | } |
| | | |
| | | public void setAttributes(final Map<String, Object> attributes) { |
| | | this.attributes = attributes; |
| | | } |
| | | } |