javaope
06-28-2002, 06:26 PM
this one will seem a bit odd (at least it does to me but I don't call the shots) and I don't know if this is possible.
what we want to do is create a password panel that matches a password to a client. Because all of our clients have some customized modules we would like to include all of the custom code in the installer and, by matching the password to the customer, extract the regular product updates plus their custom updates. Security is not a big concern with this, it is more of good housekeeping idea.
What I am wondering about is creating a panel with some way that I can type in the password and client name together. My initial thinking is to create a two dimensional array like:
String[][] pwds = {{"pass1","client1},{"pass2","client2"}};
Functionally this will work except that there are no ISMP editors (that I know of) that can accomodate this type of property. Once I can link the password and client name the rest is easy. Any ideas?
what we want to do is create a password panel that matches a password to a client. Because all of our clients have some customized modules we would like to include all of the custom code in the installer and, by matching the password to the customer, extract the regular product updates plus their custom updates. Security is not a big concern with this, it is more of good housekeeping idea.
What I am wondering about is creating a panel with some way that I can type in the password and client name together. My initial thinking is to create a two dimensional array like:
String[][] pwds = {{"pass1","client1},{"pass2","client2"}};
Functionally this will work except that there are no ISMP editors (that I know of) that can accomodate this type of property. Once I can link the password and client name the rest is easy. Any ideas?