Hi all,
I am trying to create a username and a password class.
I would like to know what are the RECOMMENDED minimum and maximum length
for both fields?
These fields will be something like this:
private static final int DEFAULT_MINIMUM _LENGTH = ??????
private static final int DEFAULT_MAXIMUM _LENGTH = ??????
I can easily specify my own values but I would like the classes to be
scalable and caters for future needs. Hence, I would like them to be
globally accepted.
While at it, what are the taboo characters for both values -
username/password?
Thanks in advance.
I am trying to create a username and a password class.
I would like to know what are the RECOMMENDED minimum and maximum length
for both fields?
These fields will be something like this:
private static final int DEFAULT_MINIMUM _LENGTH = ??????
private static final int DEFAULT_MAXIMUM _LENGTH = ??????
I can easily specify my own values but I would like the classes to be
scalable and caters for future needs. Hence, I would like them to be
globally accepted.
While at it, what are the taboo characters for both values -
username/password?
Thanks in advance.
Comment