2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
7 * This program and the accompanying materials are made available under the
8 * terms of the Eclipse Public License 2.0 which is available at
9 * http://www.eclipse.org/legal/epl-2.0
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.paradoxalarm.internal.communication;
15 import java.util.Collection;
16 import java.util.concurrent.ScheduledExecutorService;
19 * The {@link IParadoxInitialLoginCommunicator} is representing the functionality of generic communication. Only
21 * sequence which is used to determine the Panel type.
23 * @author Konstantin Polihronov - Initial contribution
25 public interface IParadoxInitialLoginCommunicator extends IConnectionHandler {
27 void startLoginSequence();
29 byte[] getPanelInfoBytes();
31 void setPanelInfoBytes(byte[] panelInfoBytes);
34 * @return IP150 connection password
38 byte[] getPcPasswordBytes();
40 ScheduledExecutorService getScheduler();
42 void setListeners(Collection<IDataUpdateListener> listeners);
44 void updateListeners();