webidor/src/main/java/cz/xelfi/quoridor/webidor/User.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 07 Nov 2009 15:23:14 +0100
changeset 143 4eb88f05c207
child 171 524c7f359c4e
permissions -rw-r--r--
Support for properties associated with every user
     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 javax.xml.bind.annotation.XmlAccessType;
    32 import javax.xml.bind.annotation.XmlAccessorType;
    33 import javax.xml.bind.annotation.XmlAttribute;
    34 import javax.xml.bind.annotation.XmlElement;
    35 import javax.xml.bind.annotation.XmlRootElement;
    36 import javax.xml.bind.annotation.XmlValue;
    37 
    38 /**
    39  *
    40  * @author Jaroslav Tulach <jtulach@netbeans.org>
    41  */
    42 @XmlRootElement
    43 @XmlAccessorType(XmlAccessType.NONE)
    44 public final class User extends Object {
    45     @XmlAttribute
    46     private String id;
    47     @XmlElement(name="property")
    48     private List<Property> properties;
    49 
    50     User() {
    51     }
    52 
    53     public User(String id) {
    54         this.id = id;
    55     }
    56 
    57     public void addProperty(String name, String value) {
    58         if (properties == null) {
    59             properties = new ArrayList<Property>();
    60         }
    61         properties.add(new Property(name, value));
    62     }
    63 
    64     public String getProperty(String name) {
    65         if (properties == null) {
    66             return null;
    67         }
    68         for (Property p : properties) {
    69             if (p.name.equals(name)) {
    70                 return p.value;
    71             }
    72         }
    73         return null;
    74     }
    75 
    76     public String getId() {
    77         return id;
    78     }
    79 
    80     public static final class Property {
    81         @XmlAttribute
    82         private String name;
    83         @XmlValue
    84         private String value;
    85 
    86         private Property() {
    87         }
    88 
    89         Property(String name, String value) {
    90             this.name = name;
    91             this.value = value;
    92         }
    93     }
    94 }