From 6702aea6da7b0a4f332a206fe87f863611130034 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 12 Nov 2022 21:31:18 +0100 Subject: [PATCH] Please cherry-pick: - removed star-import and it isn't needed anymore - still this interface should be used as a type alongside with `@Inject` annotations --- ...izzaContactMobileWebRequestController.java | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/java/org/mxchange/pizzaapplication/beans/contact/mobile/PizzaContactMobileWebRequestController.java diff --git a/src/java/org/mxchange/pizzaapplication/beans/contact/mobile/PizzaContactMobileWebRequestController.java b/src/java/org/mxchange/pizzaapplication/beans/contact/mobile/PizzaContactMobileWebRequestController.java new file mode 100644 index 00000000..2b4522f3 --- /dev/null +++ b/src/java/org/mxchange/pizzaapplication/beans/contact/mobile/PizzaContactMobileWebRequestController.java @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2016 - 2022 Free Software Foundation + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ +package org.mxchange.pizzaapplication.beans.contact.mobile; + +import java.io.Serializable; + +/** + * An interface for user beans + *

+ * @author Roland Häder + */ +public interface PizzaContactMobileWebRequestController extends Serializable { + +} -- 2.39.5