You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Java demos currently show Client and Server classes in the same directory, in the default package. Because of that, we create client.jar and server.jar that contain the same classes: they are identical except for the MANIFEST file.
We should:
move Client and client-related classes to its own package
move Server and server-related classes to its own package
for demos with other components such as plugins and services, move each component to its own package
create a separate jar file for each component (client.jar, server.jar, service.jar, plugin.jar...)
The text was updated successfully, but these errors were encountered:
The Java demos currently show Client and Server classes in the same directory, in the default package. Because of that, we create client.jar and server.jar that contain the same classes: they are identical except for the MANIFEST file.
We should:
The text was updated successfully, but these errors were encountered: