From: Roland Haeder Date: Sat, 12 Mar 2016 16:49:53 +0000 (+0100) Subject: Updated jar(s) + fixed tpyo ... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9ce1315186291c5f8baf4daa7d6153a05afdcb11;p=jjobs-lib.git Updated jar(s) + fixed tpyo ... --- diff --git a/lib/juser-core.jar b/lib/juser-core.jar index 8488d71..0ec158a 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 dd11c24..d70697a 100644 Binary files a/lib/juser-lib.jar and b/lib/juser-lib.jar differ diff --git a/src/org/mxchange/jjobs/validator/addressbook/AddressbookIdValidator.java b/src/org/mxchange/jjobs/validator/addressbook/AddressbookIdValidator.java index d521a7f..2a08538 100644 --- a/src/org/mxchange/jjobs/validator/addressbook/AddressbookIdValidator.java +++ b/src/org/mxchange/jjobs/validator/addressbook/AddressbookIdValidator.java @@ -82,10 +82,10 @@ public class AddressbookIdValidator extends BaseLongValidator { this.loggerBeanLocal.logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N // All accepted, required fields - String[] requiredFileds = {"addressbookId"}; //NOI18N + String[] requiredFields = {"addressbookId"}; //NOI18N // Pre-validation (example: not null, not a string, empty string ...) - super.preValidate(context, component, value, requiredFileds, false); + super.preValidate(context, component, value, requiredFields, false); // Cast to long Long addressbookId = (Long) value; diff --git a/src/org/mxchange/jjobs/validator/booleans/UserProfileVisibilityValidator.java b/src/org/mxchange/jjobs/validator/booleans/UserProfileVisibilityValidator.java index c1ed333..71a18d3 100644 --- a/src/org/mxchange/jjobs/validator/booleans/UserProfileVisibilityValidator.java +++ b/src/org/mxchange/jjobs/validator/booleans/UserProfileVisibilityValidator.java @@ -42,10 +42,10 @@ public class UserProfileVisibilityValidator extends BaseBooleanValidator impleme //this.getLogger().logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N // All accepted, required fields - String[] requiredFileds = {"publicUserProfileFlag"}; //NOI18N + String[] requiredFields = {"publicUserProfileFlag"}; //NOI18N // Pre-validation (example: not null, not a string, empty string ...) - super.preValidate(context, component, value, requiredFileds, false); + super.preValidate(context, component, value, requiredFields, false); // Trace message //this.getLogger().logTrace("validate: EXIT!"); //NOI18N diff --git a/src/org/mxchange/jjobs/validator/names/AddressbookNameValidator.java b/src/org/mxchange/jjobs/validator/names/AddressbookNameValidator.java index 27755ab..d0a3cbe 100644 --- a/src/org/mxchange/jjobs/validator/names/AddressbookNameValidator.java +++ b/src/org/mxchange/jjobs/validator/names/AddressbookNameValidator.java @@ -42,10 +42,10 @@ public class AddressbookNameValidator extends BaseStringValidator implements Val //this.getLogger().logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N // All accepted, required fields - String[] requiredFileds = {"addressbookName"}; //NOI18N + String[] requiredFields = {"addressbookName"}; //NOI18N // Pre-validation (example: not null, not a string, empty string ...) - super.preValidate(context, component, value, requiredFileds, false); + super.preValidate(context, component, value, requiredFields, false); // Trace message //this.getLogger().logTrace("validate: EXIT!"); //NOI18N diff --git a/src/org/mxchange/jjobs/validator/user/UserIdValidator.java b/src/org/mxchange/jjobs/validator/user/UserIdValidator.java index c4f6240..8d0a4db 100644 --- a/src/org/mxchange/jjobs/validator/user/UserIdValidator.java +++ b/src/org/mxchange/jjobs/validator/user/UserIdValidator.java @@ -128,10 +128,10 @@ public class UserIdValidator extends BaseLongValidator implements Validator { this.loggerBeanLocal.logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N // All accepted, required fields - String[] requiredFileds = {"userId"}; //NOI18N + String[] requiredFields = {"userId"}; //NOI18N // Pre-validation (example: not null, not a string, empty string ...) - super.preValidate(context, component, value, requiredFileds, false); + super.preValidate(context, component, value, requiredFields, false); // Cast value Long userId = (Long) value;