wsdor/src/main/java/cz/xelfi/quoridor/webidor/User.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 11 Sep 2010 17:04:51 +0200
changeset 256 1758a7727278
parent 178 webidor/src/main/java/cz/xelfi/quoridor/webidor/User.java@4b78d4f028b3
child 264 d60370059c3c
permissions -rw-r--r--
Splitting classes representing data types on the server into own module
     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 static boolean canSee(GameId gId, String userId) {
    94         if (!gId.isFinished()) {
    95             return true;
    96         }
    97         if (userId.equals(gId.getWhite())) {
    98             return true;
    99         }
   100         if (userId.equals(gId.getBlack())) {
   101             return true;
   102         }
   103         return false;
   104     }
   105 
   106     public boolean canSee(GameId gId){
   107         return canSee(gId, id);
   108     }
   109 
   110     public String getId() {
   111         return id;
   112     }
   113 
   114     public static final class Property {
   115         @XmlAttribute
   116         private String name;
   117         @XmlValue
   118         private String value;
   119 
   120         private Property() {
   121         }
   122 
   123         Property(String name, String value) {
   124             this.name = name;
   125             this.value = value;
   126         }
   127     }
   128 }