summaryrefslogtreecommitdiffstats
path: root/src/com.gluster.storage.management.core
diff options
context:
space:
mode:
authorShireesh Anjal <shireesh@gluster.com>2011-06-08 16:47:11 +0530
committerShireesh Anjal <shireesh@gluster.com>2011-06-08 16:47:11 +0530
commitc604f66c85de5fcda8ce36be22b34be06ad34704 (patch)
tree5f11e6983f313b68658687e5d71ade380fd9543f /src/com.gluster.storage.management.core
parent76cb93060be51514c9fd1d54d68311eba448ad87 (diff)
add/remove servers
Diffstat (limited to 'src/com.gluster.storage.management.core')
-rw-r--r--src/com.gluster.storage.management.core/src/com/gluster/storage/management/core/utils/JavaUtil.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/com.gluster.storage.management.core/src/com/gluster/storage/management/core/utils/JavaUtil.java b/src/com.gluster.storage.management.core/src/com/gluster/storage/management/core/utils/JavaUtil.java
new file mode 100644
index 00000000..fe2fc860
--- /dev/null
+++ b/src/com.gluster.storage.management.core/src/com/gluster/storage/management/core/utils/JavaUtil.java
@@ -0,0 +1,41 @@
+/*******************************************************************************
+ * 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.utils;
+
+import java.util.List;
+
+/**
+ *
+ */
+public class JavaUtil {
+ @SuppressWarnings("rawtypes")
+ public static boolean listsDiffer(List list1, List list2) {
+ if(list1.size() != list2.size()) {
+ return true;
+ }
+
+ for(Object obj : list1) {
+ if(!list2.contains(obj)) {
+ return true;
+ }
+ }
+
+ return false;
+ }
+}