Thanks y'all. I read the API before I wrote this note, but it didn't really tell me much. The reason that I wanted to know about it is because I read that to make a java class into a java bean, all you have to do is make sure the constructor doesn't have arguments and that it implements Serializable.
I am trying to switch classes to beans for testing purposes. The project I am working on is using Websphere, which has a unit test module for beans but not classes.
can anyone tell me if there is something else I need to do to *officially* make them beans? Do I need to Serialize certain methods, or just implement the Serializable Interface? If that's the case, is the whole class considered the bean, or just the binary output of the methods that serialize?
I'm sure I'm overcomplicating an issue that is relatively simple, but it's just because I'm an idiot. Thanks for all your help.
--M.austin