webidor/src/main/java/cz/xelfi/quoridor/webidor/GameId.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 30 Aug 2009 14:37:47 +0200
changeset 48 69e897fe8140
child 54 f041b6570ff9
permissions -rw-r--r--
Spliting Game into GameId and Game with full info about the state of the game
     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.Date;
    30 import java.util.UUID;
    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.XmlID;
    35 import javax.xml.bind.annotation.XmlRootElement;
    36 
    37 /** Basic identification of a game.
    38  *
    39  * @author Jaroslav Tulach <jtulach@netbeans.org>
    40  */
    41 @XmlRootElement
    42 @XmlAccessorType(XmlAccessType.FIELD)
    43 public class GameId {
    44     @XmlAttribute
    45     private String white;
    46     @XmlAttribute
    47     private String black;
    48     @XmlAttribute
    49     private Date started;
    50     @XmlAttribute
    51     private GameResult result;
    52     @XmlID
    53     private String id;
    54 
    55     GameId() {
    56     }
    57 
    58     public GameId(String first, String second) {
    59         this(
    60             UUID.randomUUID().toString(),
    61             first, second, new Date(), GameResult.IN_PROGRESS
    62         );
    63     }
    64 
    65     public GameId(String id, String first, String second, Date started, GameResult result) {
    66         this.white = first;
    67         this.black = second;
    68         this.id = id;
    69         this.started = started;
    70         this.result = result;
    71     }
    72 
    73     public String getId() {
    74         return id;
    75     }
    76 
    77     public String getWhite() {
    78         return white;
    79     }
    80 
    81     public String getBlack() {
    82         return black;
    83     }
    84 
    85     public Date getStarted() {
    86         return started;
    87     }
    88 
    89     public GameResult getResult() {
    90         return result;
    91     }
    92 }