Social Network Site

SOCIAL NETWORK SITE USING RMI 1.Remote interface – SocialNetworkService import java.rmi.Remote; import java.rmi.RemoteException; import java.util.List; public interface SocialNetworkService extends Remote { String registerUser(String username) throws RemoteException; String postMessage(String username, String content) throws RemoteException; List<Post> getUserPosts(String u...