001package jmri.server.json.reporter;
002
003import jmri.Reporter;
004import jmri.server.json.JsonConnection;
005import jmri.server.json.JsonNamedBeanSocketService;
006
007/**
008 *
009 * @author Randall Wood (C) 2016, 2019
010 */
011public class JsonReporterSocketService extends JsonNamedBeanSocketService<Reporter, JsonReporterHttpService> {
012
013    public JsonReporterSocketService(JsonConnection connection) {
014        super(connection, new JsonReporterHttpService(connection.getObjectMapper()));
015    }
016
017}