001 package com.croftsoft.apps.chat.user.seri;
002
003 import com.croftsoft.core.util.id.LongId;
004
005 import com.croftsoft.apps.chat.user.UserId;
006
007 /*********************************************************************
008 * A Serializable UserId.
009 *
010 * @version
011 * 2003-06-07
012 * @since
013 * 2003-06-07
014 * @author
015 * <a href="https://www.croftsoft.com/">David Wallace Croft</a>
016 *********************************************************************/
017
018 public final class SeriUserId
019 extends LongId
020 implements UserId
021 //////////////////////////////////////////////////////////////////////
022 //////////////////////////////////////////////////////////////////////
023 {
024
025 private static final long serialVersionUID = 0L;
026
027 //////////////////////////////////////////////////////////////////////
028 //////////////////////////////////////////////////////////////////////
029
030 public SeriUserId ( long l )
031 //////////////////////////////////////////////////////////////////////
032 {
033 super ( l );
034 }
035
036 //////////////////////////////////////////////////////////////////////
037 //////////////////////////////////////////////////////////////////////
038 }