I have a static utilities class which holds common methods. I have several static methods which convert strings to longs, and vice versa and returns the value to the requesting method. My question is will this cause a problems if multiple users are making the same request at the same time ? See a snippet of code below:
Only if these methods would use a shared static variable, and the methods change that variable, you could run into problems. If you only use local variables, or the shared variables are immutable (or you simply don't change them), there is no problem whatsoever.