From: Roland Haeder Date: Wed, 14 Oct 2015 09:31:07 +0000 (+0200) Subject: switched to Boolean object X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2569df7e4d00a030c83fd57c109bc727378a0ef6;p=jfinancials-lib.git switched to Boolean object Signed-off-by:Roland Häder --- diff --git a/src/org/mxchange/addressbook/model/shared/SharedAddressbooksSessionBeanRemote.java b/src/org/mxchange/addressbook/model/shared/SharedAddressbooksSessionBeanRemote.java index edfa19b..4393bf2 100644 --- a/src/org/mxchange/addressbook/model/shared/SharedAddressbooksSessionBeanRemote.java +++ b/src/org/mxchange/addressbook/model/shared/SharedAddressbooksSessionBeanRemote.java @@ -34,6 +34,6 @@ public interface SharedAddressbooksSessionBeanRemote extends Serializable { * @param user User instance * @return Whether the user is sharing address books */ - boolean isUserSharingAddressbooks (final User user); + public Boolean isUserSharingAddressbooks (final User user); }