summaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/util/Role.java
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2016-04-15 11:06:18 +0300
committerTeemu Suo-Anttila <teemusa@vaadin.com>2016-04-15 14:00:58 +0300
commit6b8412033e680ce6e5c7827ac504adf132305726 (patch)
tree0df05d16c324b285610af8910c126b58f4c490c5 /uitest/src/com/vaadin/tests/util/Role.java
parent9192b0bb5e5e699b506b3d3e7df4cf295fbea44a (diff)
downloadvaadin-framework-6b8412033e680ce6e5c7827ac504adf132305726.tar.gz
vaadin-framework-6b8412033e680ce6e5c7827ac504adf132305726.zip
Build uitest war with maven
Change-Id: I32625901ca27a282253df44c6e776cf9632bacda
Diffstat (limited to 'uitest/src/com/vaadin/tests/util/Role.java')
-rw-r--r--uitest/src/com/vaadin/tests/util/Role.java37
1 files changed, 0 insertions, 37 deletions
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;
- }
-
-}