webidor/src/main/java/cz/xelfi/quoridor/webidor/User.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 23 Dec 2009 07:59:16 +0100
changeset 171 524c7f359c4e
parent 143 4eb88f05c207
child 178 4b78d4f028b3
permissions -rw-r--r--
Adding support for 'permission.games' to allow special roles to enlist all the available games
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * The contents of this file are subject to the terms of either the GNU
     5  * General Public License Version 2 only ("GPL") or the Common
     6  * Development and Distribution License("CDDL") (collectively, the
     7  * "License"). You may not use this file except in compliance with the
     8  * License. You can obtain a copy of the License at
     9  * http://www.netbeans.org/cddl-gplv2.html
    10  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    11  * specific language governing permissions and limitations under the
    12  * License.  When distributing the software, include this License Header
    13  * Notice in each file and include the License file at
    14  * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    15  * particular file as subject to the "Classpath" exception as provided
    16  * by Sun in the GPL Version 2 section of the License file that
    17  * accompanied this code. If applicable, add the following below the
    18  * License Header, with the fields enclosed by brackets [] replaced by
    19  * your own identifying information:
    20  * "Portions Copyrighted [year] [name of copyright owner]"
    21  *
    22  * Contributor(s):
    23  *
    24  * Portions Copyrighted 2009 Jaroslav Tulach
    25  */
    26 
    27 package cz.xelfi.quoridor.webidor;
    28 
    29 import java.util.ArrayList;
    30 import java.util.List;
    31 import java.util.Set;
    32 import java.util.TreeSet;
    33 import javax.xml.bind.annotation.XmlAccessType;
    34 import javax.xml.bind.annotation.XmlAccessorType;
    35 import javax.xml.bind.annotation.XmlAttribute;
    36 import javax.xml.bind.annotation.XmlElement;
    37 import javax.xml.bind.annotation.XmlRootElement;
    38 import javax.xml.bind.annotation.XmlValue;
    39 
    40 /**
    41  *
    42  * @author Jaroslav Tulach <jtulach@netbeans.org>
    43  */
    44 @XmlRootElement
    45 @XmlAccessorType(XmlAccessType.NONE)
    46 public final class User extends Object {
    47     @XmlAttribute
    48     private String id;
    49     @XmlElement(name="property")
    50     private List<Property> properties;
    51     private transient Set<String> permissions;
    52 
    53     User() {
    54     }
    55 
    56     public User(String id) {
    57         this.id = id;
    58     }
    59 
    60     public void addProperty(String name, String value) {
    61         if (properties == null) {
    62             properties = new ArrayList<Property>();
    63         }
    64         properties.add(new Property(name, value));
    65     }
    66 
    67     public void addPermission(String permission) {
    68         if (permissions == null) {
    69             permissions = new TreeSet<String>();
    70         }
    71         permissions.add(permission);
    72     }
    73 
    74     public String getProperty(String name) {
    75         if (properties == null) {
    76             return null;
    77         }
    78         for (Property p : properties) {
    79             if (p.name.equals(name)) {
    80                 return p.value;
    81             }
    82         }
    83         return null;
    84     }
    85 
    86     public boolean hasPermission(String permission) {
    87         if (permissions == null) {
    88             return false;
    89         }
    90         return permissions.contains(permission);
    91     }
    92 
    93     public String getId() {
    94         return id;
    95     }
    96 
    97     public static final class Property {
    98         @XmlAttribute
    99         private String name;
   100         @XmlValue
   101         private String value;
   102 
   103         private Property() {
   104         }
   105 
   106         Property(String name, String value) {
   107             this.name = name;
   108             this.value = value;
   109         }
   110     }
   111 }