server
Class ServerMainThread

java.lang.Object
  extended by server.ServerMainThread

public final class ServerMainThread
extends java.lang.Object

This file is a driver for the grade service. Clients may ask to read a grade from one of the students, and the information is sent back to the requester. Communication happens via a socket connection. IMPORTANT: the server must be able to find the class of the objects that it receives via the socket connection. For instance, to use the Estate object that is part of the Android side of this application, we must run the server with the correct path to that class, e.g.: java -cp ".:/Users/ata/Documents/workspace/AP3/bin/" server.ServerMainThread

Author:
Fernando

Method Summary
static void main(java.lang.String[] args)
          The main method of the server side of the database application.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

main

public static void main(java.lang.String[] args)
The main method of the server side of the database application.

Parameters:
args - command line arguments.