webidor/src/main/java/cz/xelfi/quoridor/webidor/GameId.java
author Jaroslav Tulach <jtulach@netbeans.org>
Fri, 11 Sep 2009 22:25:21 +0200
changeset 78 5ea4172dcf8b
parent 77 d574ac6e44cc
child 96 2eeaa41236c3
permissions -rw-r--r--
Showing the time that has passed since the last move on the board
     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 long started;
    50     @XmlAttribute
    51     private long modified;
    52     @XmlAttribute
    53     private GameStatus status;
    54     @XmlID @XmlAttribute
    55     private String id;
    56 
    57     GameId() {
    58     }
    59 
    60     public GameId(String first, String second) {
    61         this(first, second, new Date());
    62     }
    63     private GameId(String first, String second, Date d) {
    64         this(
    65             UUID.randomUUID().toString(),
    66             first, second, d, d, GameStatus.whiteMove
    67         );
    68     }
    69 
    70     public GameId(String id, String first, String second, Date started, Date last, GameStatus result) {
    71         this.white = first;
    72         this.black = second;
    73         this.id = id;
    74         this.started = started.getTime();
    75         this.modified = last.getTime();
    76         this.status = result;
    77     }
    78 
    79     public String getId() {
    80         return id;
    81     }
    82 
    83     public String getWhite() {
    84         return white;
    85     }
    86 
    87     public String getBlack() {
    88         return black;
    89     }
    90 
    91     public long getStarted() {
    92         return started;
    93     }
    94 
    95     public long getModified() {
    96         return modified;
    97     }
    98 
    99     public GameStatus getStatus() {
   100         return status;
   101     }
   102 }