summaryrefslogtreecommitdiffstats
path: root/com.gluster.storage.management.core
diff options
context:
space:
mode:
authorShireesh Anjal <shireesh@gluster.com>2011-03-16 12:37:25 +0530
committerShireesh Anjal <shireesh@gluster.com>2011-03-16 12:37:25 +0530
commit608ec97c38e95b1e3bfec57daaa0244854c7c3be (patch)
tree11723ccfae2ca07f5d35903b870a7b0958c1d817 /com.gluster.storage.management.core
parentba2140d703464f1dd378da6c5655aaa1d9020414 (diff)
Modified to return Status object from user login method instead of AuthStatus. Removed the AuthStatus class.
Signed-off-by: Shireesh Anjal <shireesh@gluster.com>
Diffstat (limited to 'com.gluster.storage.management.core')
-rw-r--r--com.gluster.storage.management.core/src/com/gluster/storage/management/core/model/AuthStatus.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/com.gluster.storage.management.core/src/com/gluster/storage/management/core/model/AuthStatus.java b/com.gluster.storage.management.core/src/com/gluster/storage/management/core/model/AuthStatus.java
deleted file mode 100644
index 1d42f002..00000000
--- a/com.gluster.storage.management.core/src/com/gluster/storage/management/core/model/AuthStatus.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2011 Gluster, Inc. <http://www.gluster.com>
- * This file is part of Gluster Management Console.
- *
- * Gluster Management Console is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Affero General Public License as published
- * by the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * Gluster Management Console 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 Affero General Public License
- * for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see
- * <http://www.gnu.org/licenses/>.
- *******************************************************************************/
-package com.gluster.storage.management.core.model;
-
-import javax.xml.bind.annotation.XmlRootElement;
-
-@XmlRootElement
-public class AuthStatus {
- private boolean isAuthenticated;
-
- public boolean getIsAuthenticated() {
- return isAuthenticated;
- }
-
- public void setIsAuthenticated(boolean authenticated) {
- this.isAuthenticated = authenticated;
- }
-}