This is an implementation of a (fake) "print server" for the Authentication Lab in the course 02239 - Data Security at the Technical University of Denmark.
The project consists of three subprojects:
PrintServer.Commonis a java library containing interfaces shared between the client and the server.PrintServer.Clientis java application with a "print server" RMI Client.PrintServer.Serveris java application with a "print server" RMI Server.
This project uses the bazel build tool. You can obtain bazel here.
Building is as simple as running:
bazel build //:allOnce the build process has finished, start the server by running:
bazel run //:PrintServer.ServerThen start the client by running:
bazel run //:PrintServer.Client