Search in sources :

Example 1 with SSLInitializable

use of com.kyj.fx.voeditor.visual.main.initalize.SSLInitializable in project Gargoyle by callakrsos.

the class UtubeDownloaderCompositeExam method main.

public static void main(String[] args) throws Exception {
    new SSLInitializable().initialize();
    new ProxyInitializable().initialize();
    launch(args);
}
Also used : SSLInitializable(com.kyj.fx.voeditor.visual.main.initalize.SSLInitializable) ProxyInitializable(com.kyj.fx.voeditor.visual.main.initalize.ProxyInitializable)

Example 2 with SSLInitializable

use of com.kyj.fx.voeditor.visual.main.initalize.SSLInitializable in project Gargoyle by callakrsos.

the class MailPopReceiver method main.

public static void main(String[] args) throws Exception {
    new ProxyInitializable().initialize();
    new SSLInitializable().initialize();
    //change accordingly  
    String host = "pop.naver.com";
    String mailStoreType = "pop3";
    String username = "";
    //change accordingly  
    String password = "";
    MailPopReceiver mailPopReceiver = new MailPopReceiver(host, mailStoreType, username, password);
    InetSocketAddress addr = new InetSocketAddress("168.219.61.252", 8080);
    mailPopReceiver.setProxy(addr);
    mailPopReceiver.receiveEmail();
}
Also used : SSLInitializable(com.kyj.fx.voeditor.visual.main.initalize.SSLInitializable) ProxyInitializable(com.kyj.fx.voeditor.visual.main.initalize.ProxyInitializable) InetSocketAddress(java.net.InetSocketAddress)

Example 3 with SSLInitializable

use of com.kyj.fx.voeditor.visual.main.initalize.SSLInitializable in project Gargoyle by callakrsos.

the class NrchRealtimeSearchExam method main.

public static void main(String[] args) throws Exception {
    new ProxyInitializable().initialize();
    new SSLInitializable().initialize();
    launch(args);
}
Also used : SSLInitializable(com.kyj.fx.voeditor.visual.main.initalize.SSLInitializable) ProxyInitializable(com.kyj.fx.voeditor.visual.main.initalize.ProxyInitializable)

Aggregations

ProxyInitializable (com.kyj.fx.voeditor.visual.main.initalize.ProxyInitializable)3 SSLInitializable (com.kyj.fx.voeditor.visual.main.initalize.SSLInitializable)3 InetSocketAddress (java.net.InetSocketAddress)1