]> git.basschouten.com Git - openhab-addons.git/blob
d5cbe694f2d1897f586993c3e6fd66d9ceba792d
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
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
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.velux.internal.bridge.common;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * Specific bridge communication message supported by the Velux bridge.
19  * <P>
20  * Message semantic: Communication to authenticate itself, resulting in a return of current bridge state.
21  * <P>
22  * Note: even before the deauthentication, an authentication is intended.
23  * <P>
24  * Each protocol-specific implementation has to provide the common
25  * methods defined by {@link BridgeCommunicationProtocol}.
26  *
27  * @author Guenther Schreiner - Initial contribution.
28  */
29 @NonNullByDefault
30 public abstract class Logout implements BridgeCommunicationProtocol {
31 }