001package jmri.jmrix.rfid; 002 003import jmri.implementation.AbstractIdTagReporter; 004 005/** 006 * Extend AbstractIdTagReporter for RFID systems 007 * <p> 008 * System names are "FRpppp", where ppp is a representation of the RFID reader. 009 * <hr> 010 * This file is part of JMRI. 011 * <p> 012 * JMRI is free software; you can redistribute it and/or modify it under the 013 * terms of version 2 of the GNU General Public License as published by the Free 014 * Software Foundation. See the "COPYING" file for a copy of this license. 015 * <p> 016 * JMRI is distributed in the hope that it will be useful, but WITHOUT ANY 017 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 018 * A PARTICULAR PURPOSE. See the GNU General Public License for more details. 019 * 020 * @author Matthew Harris Copyright (c) 2011 021 * @since 2.11.4 022 */ 023public class RfidReporter extends AbstractIdTagReporter { 024 025 public RfidReporter(String systemName) { 026 super(systemName); 027 } 028 029 public RfidReporter(String systemName, String userName) { 030 super(systemName, userName); 031 } 032 033 034}