I have a small architectural question...

I have a LoggingForm bean for displaying the logging parameters on our own
server.  This contains several variables - boolean whether logging enabled,
String current severity, Vector of possible severities, along with Vector of
categories, each of which is a Parameter object holding key, value, description.

I have a server bean which encapsulates all calls to the Server, and all of the
above variables are obtained from one call to the server which returns a list
containing the above in a specified order.  My question is whether it is okay to
pass the LoggingForm to the server bean and have it fill all the variables at
once, or is this breaking the MVC separation?  Should I, instead, call the
server bean each time, to get/set each of the variables?

I know all this gets a little fuzzy at times, but would appreciate any input.

Thanks,

Dave



Reply via email to