University assignment for Computer Networks
GUI program that allows browsing a mailbox. It allows the usage of SSL via SSLSocket java class. Everything was done in low level as required by the assignment. HTML is parsed, however css styling is treated as plain text.
package com.simas;
/**
* Created by Simas Abramovas on 2015 Mar 22.
*/
public class Credentials {
public static final String USERNAME = "user";
public static final String PASSWORD = "pass";
public static final String HOST = "imap.gmail.com";
}