/** * 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.fs20; import org.openhab.core.binding.BindingConfig; import org.openhab.core.items.Item; /** * Binding config for FS20 devices. * * @author Till Klocke * */ public class FS20BindingConfig implements BindingConfig { /** * The complete address including Housecode of the device */ private String address; private Item item; /*** * possible extra options when communicating with the device. currently * unused. */ private String extraOpts; public FS20BindingConfig(String address, Item item) { this.address = address; this.item = item; } public String getExtraOpts() { return extraOpts; } public void setExtraOpts(String extraOpts) { this.extraOpts = extraOpts; } public String getAddress() { return address; } public Item getItem() { return item; } }