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.avmfritz.internal.hardware.callbacks;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * Interface for callbacks in asynchronous requests.
20 * @author Robert Bausdorf - Initial contribution
23 public interface FritzAhaCallback {
25 * Runs callback code after response completion.
27 void execute(int status, String response);
32 * @return URI path as String
34 public String getPath();
37 * Get the query String
39 * @return Query string as String
41 public String getArgs();