]> git.mxchange.org Git - addressbook-mailer-ejb.git/commitdiff
renamed it as well (please cherry-pick)
authorRoland Häder <roland@mxchange.org>
Tue, 16 Aug 2016 10:46:13 +0000 (12:46 +0200)
committerRoland Haeder <roland@mxchange.org>
Tue, 16 Aug 2016 19:46:16 +0000 (21:46 +0200)
src/java/org/mxchange/jphone/phonenumbers/phone/AddressbookPhoneSessionBean.java

index 247d4200bf1e23eb85ded4d0827071be6ebff72d..43321a5a988518c634d67078018de9be19b1c206 100644 (file)
@@ -107,24 +107,24 @@ public class AddressbookPhoneSessionBean extends BaseDatabaseBean implements Pho
        }
 
        @Override
-       public DialableMobileNumber findMobileNumberById (final Long cellphoneId) throws PhoneEntityNotFoundException {
+       public DialableMobileNumber findMobileNumberById (final Long mobileNumberId) throws PhoneEntityNotFoundException {
                // Trace message
-               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findCellphoneById: cellphoneId={1} - CALLED!", this.getClass().getSimpleName(), cellphoneId)); //NOI18N
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findCellphoneById: mobileNumberId={1} - CALLED!", this.getClass().getSimpleName(), mobileNumberId)); //NOI18N
 
                // The id number should be valid
-               if (null == cellphoneId) {
+               if (null == mobileNumberId) {
                        // Throw NPE
-                       throw new NullPointerException("cellphoneId is null"); //NOI18N
-               } else if (cellphoneId < 1) {
+                       throw new NullPointerException("mobileNumberId is null"); //NOI18N
+               } else if (mobileNumberId < 1) {
                        // Not valid
-                       throw new IllegalArgumentException(MessageFormat.format("cellphoneId={0} is not valid.", cellphoneId)); //NOI18N
+                       throw new IllegalArgumentException(MessageFormat.format("mobileNumberId={0} is not valid.", mobileNumberId)); //NOI18N
                }
 
                // Now find it
-               Query query = this.getEntityManager().createNamedQuery("SearchCellphoneId", MobileNumber.class); //NOI18N
+               Query query = this.getEntityManager().createNamedQuery("SearchMobileNumberId", MobileNumber.class); //NOI18N
 
                // Set parameter
-               query.setParameter("cellphoneId", cellphoneId); //NOI18N
+               query.setParameter("mobileNumberId", mobileNumberId); //NOI18N
 
                // Init instance
                DialableMobileNumber cellphone = null;
@@ -135,7 +135,7 @@ public class AddressbookPhoneSessionBean extends BaseDatabaseBean implements Pho
                        cellphone = (DialableMobileNumber) query.getSingleResult();
                } catch (NoResultException ex) {
                        // The entry was not found, so throw it again
-                       throw new PhoneEntityNotFoundException(cellphoneId, ex);
+                       throw new PhoneEntityNotFoundException(mobileNumberId, ex);
                }
 
                // Trace message