From 7b25b3886ea95bc6495506fbe9472e45fcbde684 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Thu, 30 Aug 2012 17:24:36 +0300 Subject: Renamed tests -> uitest and tests/testbench -> uitest/src (#9299) --- uitest/src/com/vaadin/tests/util/Role.java | 37 ++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create 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 new file mode 100644 index 0000000000..83f63db4ab --- /dev/null +++ b/uitest/src/com/vaadin/tests/util/Role.java @@ -0,0 +1,37 @@ +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 users = new HashSet(); + + 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 getUsers() { + return users; + } + +} -- cgit v1.2.3