From c5a492fe0cbdb699e463fe5e4d5edf02a4ed6fad Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sun, 17 Apr 2016 13:43:02 +0200 Subject: [PATCH] Continued a bit: - added remote interface for administrative phone purposes --- .../phone/AdminPhoneSessionBeanRemote.java | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/org/mxchange/jphone/phonenumbers/phone/AdminPhoneSessionBeanRemote.java diff --git a/src/org/mxchange/jphone/phonenumbers/phone/AdminPhoneSessionBeanRemote.java b/src/org/mxchange/jphone/phonenumbers/phone/AdminPhoneSessionBeanRemote.java new file mode 100644 index 0000000..b160ad7 --- /dev/null +++ b/src/org/mxchange/jphone/phonenumbers/phone/AdminPhoneSessionBeanRemote.java @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2016 Roland Haeder + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +package org.mxchange.jphone.phonenumbers.phone; + +import java.io.Serializable; + +/** + * A remote administrative interface for any kind of phone numbers. + *

+ * @author Roland Haeder + */ +public interface AdminPhoneSessionBeanRemote extends Serializable { + +} -- 2.39.5