freemarkerdor/src/main/java/cz/xelfi/quoridor/freemarkerdor/UserInfo.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 08 Nov 2009 09:54:32 +0100
changeset 146 0b889d9e4ee1
child 264 d60370059c3c
permissions -rw-r--r--
Allowing users to specify their preferred language
     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.freemarkerdor;
    28 
    29 import java.util.List;
    30 import javax.xml.bind.annotation.XmlAccessType;
    31 import javax.xml.bind.annotation.XmlAccessorType;
    32 import javax.xml.bind.annotation.XmlAttribute;
    33 import javax.xml.bind.annotation.XmlElement;
    34 import javax.xml.bind.annotation.XmlRootElement;
    35 import javax.xml.bind.annotation.XmlValue;
    36 
    37 /**
    38  *
    39  * @author Jaroslav Tulach <jtulach@netbeans.org>
    40  */
    41 @XmlRootElement(name="user")
    42 @XmlAccessorType(XmlAccessType.NONE)
    43 public final class UserInfo extends Object {
    44     @XmlAttribute
    45     private String id;
    46     @XmlElement(name="property")
    47     private List<Property> properties;
    48 
    49     UserInfo() {
    50     }
    51 
    52     public UserInfo(String id) {
    53         this.id = id;
    54     }
    55 
    56     public String getProperty(String name) {
    57         if (properties == null) {
    58             return null;
    59         }
    60         for (Property p : properties) {
    61             if (p.name.equals(name)) {
    62                 return p.value;
    63             }
    64         }
    65         return null;
    66     }
    67 
    68     public String getId() {
    69         return id;
    70     }
    71 
    72     public static final class Property {
    73         @XmlAttribute
    74         private String name;
    75         @XmlValue
    76         private String value;
    77 
    78         private Property() {
    79         }
    80 
    81         Property(String name, String value) {
    82             this.name = name;
    83             this.value = value;
    84         }
    85     }
    86 }