From f9b3a8ebe45f978580ae3cac20263d0e63dd50c3 Mon Sep 17 00:00:00 2001 From: Robert von Burg Date: Sat, 13 Sep 2014 15:23:25 +0200 Subject: [PATCH] [New] added Login and Logout objects --- .../java/li/strolch/rest/model/Logout.java | 75 +++++++++++++++++++ .../li/strolch/rest/model/LogoutResult.java | 36 +++++++++ 2 files changed, 111 insertions(+) create mode 100644 src/main/java/li/strolch/rest/model/Logout.java diff --git a/src/main/java/li/strolch/rest/model/Logout.java b/src/main/java/li/strolch/rest/model/Logout.java new file mode 100644 index 000000000..881e9d144 --- /dev/null +++ b/src/main/java/li/strolch/rest/model/Logout.java @@ -0,0 +1,75 @@ +/* + * Copyright (c) 2012, Robert von Burg + * + * All rights reserved. + * + * This file is part of the XXX. + * + * XXX is free software: you can redistribute + * it and/or modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the License, + * or (at your option) any later version. + * + * XXX is distributed in the hope that it will + * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with XXX. If not, see + * . + */ +package li.strolch.rest.model; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlRootElement; + +/** + * @author Robert von Burg + */ +@XmlRootElement(name = "Logout") +@XmlAccessorType(XmlAccessType.NONE) +public class Logout { + + @XmlAttribute(name = "username") + private String username; + + @XmlAttribute(name = "sessionId") + private String sessionId; + + public Logout() { + // no-arg constructor for JAXB + } + + /** + * @return the username + */ + public String getUsername() { + return this.username; + } + + /** + * @param username + * the username to set + */ + public void setUsername(String username) { + this.username = username; + } + + /** + * @return the sessionId + */ + public String getSessionId() { + return this.sessionId; + } + + /** + * @param sessionId + * the sessionId to set + */ + public void setSessionId(String sessionId) { + this.sessionId = sessionId; + } +} diff --git a/src/main/java/li/strolch/rest/model/LogoutResult.java b/src/main/java/li/strolch/rest/model/LogoutResult.java index b4343306a..db37aa98d 100644 --- a/src/main/java/li/strolch/rest/model/LogoutResult.java +++ b/src/main/java/li/strolch/rest/model/LogoutResult.java @@ -27,6 +27,12 @@ import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement(name = "LogoutResult") public class LogoutResult { + @XmlAttribute(name = "username") + private String username; + + @XmlAttribute(name = "sessionId") + private String sessionId; + @XmlAttribute(name = "msg") private String msg; @@ -48,4 +54,34 @@ public class LogoutResult { public void setMsg(String msg) { this.msg = msg; } + + /** + * @return the username + */ + public String getUsername() { + return this.username; + } + + /** + * @param username + * the username to set + */ + public void setUsername(String username) { + this.username = username; + } + + /** + * @return the sessionId + */ + public String getSessionId() { + return this.sessionId; + } + + /** + * @param sessionId + * the sessionId to set + */ + public void setSessionId(String sessionId) { + this.sessionId = sessionId; + } }