/** * Copyright (c) 2010-2016 by the respective copyright holders. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ package org.openhab.binding.zwave.internal.config; import java.util.List; import org.openhab.binding.zwave.internal.HexToIntegerConverter; import com.thoughtworks.xstream.annotations.XStreamConverter; import com.thoughtworks.xstream.annotations.XStreamImplicit; /** * Implements the manufacturer class for the XML product database * * @author Chris Jackson * @since 1.4.0 * */ public class ZWaveDbManufacturer { @XStreamConverter(HexToIntegerConverter.class) Integer Id; String Name; @XStreamImplicit public List<ZWaveDbProduct> Product; }