001package jmri.server.json.idtag;
002
003import jmri.IdTag;
004import jmri.server.json.JsonConnection;
005import jmri.server.json.JsonNamedBeanSocketService;
006
007/**
008 *
009 * @author Randall Wood Copyright 2019
010 */
011public class JsonIdTagSocketService extends JsonNamedBeanSocketService<IdTag, JsonIdTagHttpService> {
012
013    public JsonIdTagSocketService(JsonConnection connection) {
014        super(connection, new JsonIdTagHttpService(connection.getObjectMapper()));
015    }
016}