001         package com.croftsoft.apps.mars.net.request;
002    
003         /*********************************************************************
004         * Abstract Request implementation.
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 abstract class  AbstractRequest
015           implements Request
016         //////////////////////////////////////////////////////////////////////
017         //////////////////////////////////////////////////////////////////////
018         {
019    
020         private final String  playerName;
021    
022         //////////////////////////////////////////////////////////////////////
023         //////////////////////////////////////////////////////////////////////
024    
025         public  AbstractRequest ( String  playerName )
026         //////////////////////////////////////////////////////////////////////
027         {
028           this.playerName = playerName;
029         }
030    
031         //////////////////////////////////////////////////////////////////////
032         //////////////////////////////////////////////////////////////////////
033    
034         public String  getPlayerName ( ) { return playerName; }
035    
036         //////////////////////////////////////////////////////////////////////
037         //////////////////////////////////////////////////////////////////////
038         }