From 6b8412033e680ce6e5c7827ac504adf132305726 Mon Sep 17 00:00:00 2001
From: Teemu Suo-Anttila <teemusa@vaadin.com>
Date: Fri, 15 Apr 2016 11:06:18 +0300
Subject: Build uitest war with maven

Change-Id: I32625901ca27a282253df44c6e776cf9632bacda
---
 uitest/src/com/vaadin/tests/util/Role.java | 37 ------------------------------
 1 file changed, 37 deletions(-)
 delete mode 100644 uitest/src/com/vaadin/tests/util/Role.java

(limited to 'uitest/src/com/vaadin/tests/util/Role.java')

diff --git a/uitest/src/com/vaadin/tests/util/Role.java b/uitest/src/com/vaadin/tests/util/Role.java
deleted file mode 100644
index 83f63db4ab..0000000000
--- a/uitest/src/com/vaadin/tests/util/Role.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package com.vaadin.tests.util;
-
-import java.io.Serializable;
-import java.util.HashSet;
-import java.util.Set;
-
-public class Role implements Serializable {
-    private String name = "";
-    private Set<User> users = new HashSet<User>();
-
-    public Role() {
-    }
-
-    public Role(String name) {
-        setName(name);
-    }
-
-    public String getName() {
-        return name;
-    }
-
-    public void setName(String name) {
-        this.name = name;
-    }
-
-    /**
-     * In this direction, the users for a role can be queried and the returned
-     * collection modified, but the whole collection of users cannot be set
-     * directly.
-     * 
-     * @return set of users having the role (not null)
-     */
-    public Set<User> getUsers() {
-        return users;
-    }
-
-}
-- 
cgit v1.2.3