Java Package Question
I have an application running on a server that I'm trying to understand the architecture. In a batch file that is used to start the application, there are a few classes that are called, one of which is rem'ed to state it works with a firewall and another that is commented out for use without a firewall. There are several parameters passed along with a call to an environmental variable for the classpath and then the following: com.motorola.webnms.common.server.firewall.NmsBEServerBehindFirewall
Is this command calling a class from a remote server or is this just a naming convention for identifying java packages?

