]> git.mxchange.org Git - jjobs-lib.git/commitdiff
Updated jar(s) + fixed tpyo ...
authorRoland Haeder <roland@mxchange.org>
Sat, 12 Mar 2016 16:49:53 +0000 (17:49 +0100)
committerRoland Haeder <roland@mxchange.org>
Sun, 13 Mar 2016 14:02:41 +0000 (15:02 +0100)
lib/juser-core.jar
lib/juser-lib.jar
src/org/mxchange/jjobs/validator/addressbook/AddressbookIdValidator.java
src/org/mxchange/jjobs/validator/booleans/UserProfileVisibilityValidator.java
src/org/mxchange/jjobs/validator/names/AddressbookNameValidator.java
src/org/mxchange/jjobs/validator/user/UserIdValidator.java

index 8488d71d29bac0c83be02e3c7e5e3129e0b51f47..0ec158aec46f5e2cb152081a1e03136da2eb0fb9 100644 (file)
Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ
index dd11c240493a216c77ed2b313e537ab78f64da1e..d70697aaa2ef33810501b060d2c314cca0e8cf1f 100644 (file)
Binary files a/lib/juser-lib.jar and b/lib/juser-lib.jar differ
index d521a7f46fcb4a8efc2ba67ebd55aae3da67611d..2a08538b4570d22757c00f8be863203ef99bcd06 100644 (file)
@@ -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;
index c1ed33302912e07b70a41309b510fec2cfe45967..71a18d319f49c0ddb690b865782a27da6af2f879 100644 (file)
@@ -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
index 27755ab61aa611bbc15120dec4b3a44a2aacdac6..d0a3cbeda8e184311961e0f60075d97d4c78ba83 100644 (file)
@@ -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
index c4f624089f3a4d686a09a9fde989928e71f731e3..8d0a4dbceda89f1db9d638381b339427b6cfb1a6 100644 (file)
@@ -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;