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