001 package com.croftsoft.apps.chat.request;
002
003 import com.croftsoft.core.security.Authentication;
004
005 /*********************************************************************
006 * A request to create a User.
007 *
008 * @version
009 * 2003-06-20
010 * @since
011 * 2003-06-10
012 * @author
013 * <a href="https://www.croftsoft.com/">David Wallace Croft</a>
014 *********************************************************************/
015
016 public final class CreateUserRequest
017 extends CoalesceableRequest
018 //////////////////////////////////////////////////////////////////////
019 //////////////////////////////////////////////////////////////////////
020 {
021
022 private static final long serialVersionUID = 0L;
023
024 //////////////////////////////////////////////////////////////////////
025 //////////////////////////////////////////////////////////////////////
026
027 public CreateUserRequest ( Authentication authentication )
028 //////////////////////////////////////////////////////////////////////
029 {
030 super ( authentication );
031 }
032
033 //////////////////////////////////////////////////////////////////////
034 //////////////////////////////////////////////////////////////////////
035 }