From: Roland Haeder Date: Thu, 15 Oct 2015 07:50:54 +0000 (+0200) Subject: Cleanup through inspection + updated jar(s) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1614de9c5e34bf984e59a9a215f9b6c364146308;p=jaddressbook-lib.git Cleanup through inspection + updated jar(s) Signed-off-by:Roland Häder --- diff --git a/lib/jcontacts-business-core.jar b/lib/jcontacts-business-core.jar index b0ead65c..2314d555 100644 Binary files a/lib/jcontacts-business-core.jar and b/lib/jcontacts-business-core.jar differ diff --git a/lib/jcontacts-core.jar b/lib/jcontacts-core.jar index 4bf2b793..588f0e34 100644 Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ diff --git a/lib/jcore-logger-lib.jar b/lib/jcore-logger-lib.jar index 50499372..ce30ba8a 100644 Binary files a/lib/jcore-logger-lib.jar and b/lib/jcore-logger-lib.jar differ diff --git a/lib/jcore-swing.jar b/lib/jcore-swing.jar index 427a4b30..b66098fd 100644 Binary files a/lib/jcore-swing.jar and b/lib/jcore-swing.jar differ diff --git a/lib/jcore.jar b/lib/jcore.jar index a6eb6775..1c2e5700 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/lib/jcoreee.jar b/lib/jcoreee.jar index db108dde..6ea5dee8 100644 Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ diff --git a/lib/jcountry-core.jar b/lib/jcountry-core.jar index 9daf4363..eaf6110d 100644 Binary files a/lib/jcountry-core.jar and b/lib/jcountry-core.jar differ diff --git a/lib/jphone-core.jar b/lib/jphone-core.jar index 97bdd394..9637788d 100644 Binary files a/lib/jphone-core.jar and b/lib/jphone-core.jar differ diff --git a/lib/juser-core.jar b/lib/juser-core.jar index 52192afb..404aa57a 100644 Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ diff --git a/lib/juser-lib.jar b/lib/juser-lib.jar index cf6b0ff7..3630a889 100644 Binary files a/lib/juser-lib.jar and b/lib/juser-lib.jar differ diff --git a/src/org/mxchange/addressbook/model/addressbook/Addressbook.java b/src/org/mxchange/addressbook/model/addressbook/Addressbook.java index fab85269..536cdb82 100644 --- a/src/org/mxchange/addressbook/model/addressbook/Addressbook.java +++ b/src/org/mxchange/addressbook/model/addressbook/Addressbook.java @@ -33,74 +33,74 @@ public interface Addressbook extends Serializable { *

* @return Id number */ - public Long getAddressbookId (); + Long getAddressbookId (); /** * Setter for id number *

* @param addressbookId Id number */ - public void setAddressbookId (final Long addressbookId); + void setAddressbookId (final Long addressbookId); /** * Getter for addressbook creation timestamp *

* @return Addressbook creation timestamp */ - public Calendar getAddressbookCreated (); + Calendar getAddressbookCreated (); /** * Setter for addressbook creation timestamp *

* @param addressbookCreated Addressbook creation timestamp */ - public void setAddressbookCreated (final Calendar addressbookCreated); + void setAddressbookCreated (final Calendar addressbookCreated); /** * Getter for addressbook's name *

* @return Addressbook's name */ - public String getAddressbookName (); + String getAddressbookName (); /** * Setter for addressbook's name *

* @param addressbookName Addressbook's name */ - public void setAddressbookName (final String addressbookName); + void setAddressbookName (final String addressbookName); /** * Getter for addressbook status *

* @return Addressbook status */ - public AddressbokStatus getAddressbookStatus (); + AddressbokStatus getAddressbookStatus (); /** * Setter for addressbook status *

* @param addressbookStatus Addressbook status */ - public void setAddressbookStatus (final AddressbokStatus addressbookStatus); + void setAddressbookStatus (final AddressbokStatus addressbookStatus); /** * Getter for addressbook's user (owner) *

* @return Addressbook's user (owner) */ - public User getAddressbookUser (); + User getAddressbookUser (); /** * Setter for addressbook's user (owner) *

* @param addressbookUser Addressbook's user (owner) */ - public void setAddressbookUser (final User addressbookUser); + void setAddressbookUser (final User addressbookUser); @Override - public boolean equals (final Object object); + boolean equals (final Object object); @Override - public int hashCode (); + int hashCode (); } diff --git a/src/org/mxchange/addressbook/model/addressbook/AddressbookSessionBeanRemote.java b/src/org/mxchange/addressbook/model/addressbook/AddressbookSessionBeanRemote.java index 44da7a74..0fe67bba 100644 --- a/src/org/mxchange/addressbook/model/addressbook/AddressbookSessionBeanRemote.java +++ b/src/org/mxchange/addressbook/model/addressbook/AddressbookSessionBeanRemote.java @@ -39,7 +39,7 @@ public interface AddressbookSessionBeanRemote extends Serializable { *

* @return List of all entries */ - public List allEntries (final Addressbook addressbook); + List allEntries (final Addressbook addressbook); /** * Some "getter" for a list of address books the logged-in user has created @@ -48,7 +48,7 @@ public interface AddressbookSessionBeanRemote extends Serializable { *

* @return List of all address books */ - public List getUsersList (final User loggedInUser); + List getUsersList (final User loggedInUser); /** * Creates given address book by persisting it. A User instance must be set, @@ -62,7 +62,7 @@ public interface AddressbookSessionBeanRemote extends Serializable { * org.mxchange.addressbook.exceptions.AddressbookNameAlreadyUsedException * If the address book's name has already been used by the user. */ - public Addressbook createAddressbook (final Addressbook addressbook) throws AddressbookNameAlreadyUsedException; + Addressbook createAddressbook (final Addressbook addressbook) throws AddressbookNameAlreadyUsedException; /** * Checks whether the given address book id is used (means available). @@ -70,7 +70,7 @@ public interface AddressbookSessionBeanRemote extends Serializable { * @param addressbookId Address book id to check * @return Whether the id is valid */ - public boolean isAddressbookIdUsed (final Long addressbookId); + boolean isAddressbookIdUsed (final Long addressbookId); /** * Checks if the given address book's name is already used by the user. @@ -79,5 +79,5 @@ public interface AddressbookSessionBeanRemote extends Serializable { *

* @return Whether the name has already been used by the user */ - public boolean isAddressbookNameUsed (final Addressbook addressbook); + boolean isAddressbookNameUsed (final Addressbook addressbook); } diff --git a/src/org/mxchange/addressbook/model/addressbook/entry/AddressbookEntry.java b/src/org/mxchange/addressbook/model/addressbook/entry/AddressbookEntry.java index fb257dc8..6dd8a505 100644 --- a/src/org/mxchange/addressbook/model/addressbook/entry/AddressbookEntry.java +++ b/src/org/mxchange/addressbook/model/addressbook/entry/AddressbookEntry.java @@ -35,77 +35,77 @@ public interface AddressbookEntry extends Serializable { *

* @return Id number */ - public Long getAddressbookEntryId (); + Long getAddressbookEntryId (); /** * Setter for id number *

* @param addressbookEntryId Id number */ - public void setAddressbookEntryId (final Long addressbookEntryId); + void setAddressbookEntryId (final Long addressbookEntryId); /** * Getter for business contact *

* @return Business contact */ - public BusinessContact getAddressbookEntryBusinessContact (); + BusinessContact getAddressbookEntryBusinessContact (); /** * Setter for business contact *

* @param addressbookEntryBusinessContact Business contact */ - public void setAddressbookEntryBusinessContact (final BusinessContact addressbookEntryBusinessContact); + void setAddressbookEntryBusinessContact (final BusinessContact addressbookEntryBusinessContact); /** * Getter for entry created timestamp *

* @return Entry created timestamp */ - public Calendar getAddressbookEntryCreated (); + Calendar getAddressbookEntryCreated (); /** * Setter for entry created timestamp *

* @param addressbookEntryCreated Entry created timestamp */ - public void setAddressbookEntryCreated (final Calendar addressbookEntryCreated); + void setAddressbookEntryCreated (final Calendar addressbookEntryCreated); /** * Getter for private contact *

* @return Private contact */ - public Contact getAddressbookEntryPrivateContact (); + Contact getAddressbookEntryPrivateContact (); /** * Setter for private contact *

* @param addressbookEntryPrivateContact Private contact */ - public void setAddressbookEntryPrivateContact (final Contact addressbookEntryPrivateContact); + void setAddressbookEntryPrivateContact (final Contact addressbookEntryPrivateContact); /** * Getter for user who has added this entry to his/her addressbook *

* @return User who has added this entry */ - public User getAddressbookEntryUserSharer (); + User getAddressbookEntryUserSharer (); /** * Setter for user who has added this entry to his/her addressbook *

* @param addressbookEntryUserAdded User who has added this entry */ - public void setAddressbookEntryUserSharer (final User addressbookEntryUserAdded); + void setAddressbookEntryUserSharer (final User addressbookEntryUserAdded); /** * Getter for user who has initially created the address book entry *

* @return User who has created initially this address book entry */ - public User getAddressbookEntryUserOwner (); + User getAddressbookEntryUserOwner (); /** * Setter for user who has initially created the address book entry @@ -113,25 +113,25 @@ public interface AddressbookEntry extends Serializable { * @param addressbookEntryUserOrigin User who has created initially this * address book entry */ - public void setAddressbookEntryUserOwner (final User addressbookEntryUserOrigin); + void setAddressbookEntryUserOwner (final User addressbookEntryUserOrigin); /** * Getter for address book *

* @return Address book */ - public Addressbook getAddressbookId (); + Addressbook getAddressbookId (); /** * Setter for address book *

* @param addressbookId Address book */ - public void setAddressbookId (final Addressbook addressbookId); + void setAddressbookId (final Addressbook addressbookId); @Override - public boolean equals (final Object object); + boolean equals (final Object object); @Override - public int hashCode (); + int hashCode (); } diff --git a/src/org/mxchange/addressbook/model/addressbook/shared/ShareableAddressbook.java b/src/org/mxchange/addressbook/model/addressbook/shared/ShareableAddressbook.java index 43da0444..bb56c4d4 100644 --- a/src/org/mxchange/addressbook/model/addressbook/shared/ShareableAddressbook.java +++ b/src/org/mxchange/addressbook/model/addressbook/shared/ShareableAddressbook.java @@ -32,60 +32,60 @@ public interface ShareableAddressbook extends Serializable { *

* @return Shared address book instance */ - public Addressbook getShareAddressbook (); + Addressbook getShareAddressbook (); /** * Setter for shared address book instance *

* @param shareAddressbook Shared address book instance */ - public void setShareAddressbook (final Addressbook shareAddressbook); + void setShareAddressbook (final Addressbook shareAddressbook); /** * Getter for id number *

* @return Id number */ - public Long getShareId (); + Long getShareId (); /** * Setter for id number *

* @param shareId Id number */ - public void setShareId (final Long shareId); + void setShareId (final Long shareId); /** * Getter for address book owner instance *

* @return Address book owner instance */ - public User getShareUserOwner (); + User getShareUserOwner (); /** * Setter for address book owner instance *

* @param shareUserOwner Address book owner instance */ - public void setShareUserOwner (final User shareUserOwner); + void setShareUserOwner (final User shareUserOwner); /** * Getter for address book sharee instance *

* @return Address book sharee instance */ - public User getShareUserSharee (); + User getShareUserSharee (); /** * Setter for address book sharee instance *

* @param shareUserSharer Address book sharee instance */ - public void setShareUserSharee (final User shareUserSharer); + void setShareUserSharee (final User shareUserSharer); @Override - public boolean equals (final Object object); + boolean equals (final Object object); @Override - public int hashCode (); + int hashCode (); } diff --git a/src/org/mxchange/addressbook/model/shared/SharedAddressbooksSessionBeanRemote.java b/src/org/mxchange/addressbook/model/shared/SharedAddressbooksSessionBeanRemote.java index 4393bf2f..6d292bcd 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 */ - public Boolean isUserSharingAddressbooks (final User user); + Boolean isUserSharingAddressbooks (final User user); } diff --git a/src/org/mxchange/jcountry/data/AddressbookCountrySingletonBeanRemote.java b/src/org/mxchange/jcountry/data/AddressbookCountrySingletonBeanRemote.java index b12db82f..abc46605 100644 --- a/src/org/mxchange/jcountry/data/AddressbookCountrySingletonBeanRemote.java +++ b/src/org/mxchange/jcountry/data/AddressbookCountrySingletonBeanRemote.java @@ -33,5 +33,5 @@ public interface AddressbookCountrySingletonBeanRemote extends Serializable { *

* @return A list of all countries */ - public List allCountries (); + List allCountries (); } diff --git a/src/org/mxchange/jphone/phonenumbers/smsprovider/AddressbookSmsProviderSingletonBeanRemote.java b/src/org/mxchange/jphone/phonenumbers/smsprovider/AddressbookSmsProviderSingletonBeanRemote.java index f454249b..b2a5f102 100644 --- a/src/org/mxchange/jphone/phonenumbers/smsprovider/AddressbookSmsProviderSingletonBeanRemote.java +++ b/src/org/mxchange/jphone/phonenumbers/smsprovider/AddressbookSmsProviderSingletonBeanRemote.java @@ -33,5 +33,5 @@ public interface AddressbookSmsProviderSingletonBeanRemote extends Serializable *

* @return A list of all SMS providers */ - public List allSmsProvider (); + List allSmsProvider (); }