001         package com.croftsoft.apps.mars.net.request;
002    
003         /*********************************************************************
004         * Request for a view of the game.
005         *
006         * @version
007         *   2003-05-13
008         * @since
009         *   2003-05-13
010         * @author
011         *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
012         *********************************************************************/
013    
014         public final class  ViewRequest
015           extends AbstractRequest
016         //////////////////////////////////////////////////////////////////////
017         //////////////////////////////////////////////////////////////////////
018         {
019    
020         private static final long  serialVersionUID = 0L;
021    
022         //////////////////////////////////////////////////////////////////////
023         //////////////////////////////////////////////////////////////////////
024    
025         public  ViewRequest ( String  playerName )
026         //////////////////////////////////////////////////////////////////////
027         {
028           super ( playerName );
029         }
030    
031         //////////////////////////////////////////////////////////////////////
032         //////////////////////////////////////////////////////////////////////
033         }