Package net.solosky.maplefetion.store

Examples of net.solosky.maplefetion.store.SimpleFetionStore


  public MapleFetion(String serviceId, String pass)
  {
    this.client = new FetionClient(serviceId, pass,
        this,
        new AutoTransferFactory(),
        new SimpleFetionStore(),
        new ThreadTimer(),
        new SingleExecutor());
    this.reader = new BufferedReader(new InputStreamReader(System.in));
    this.writer = new BufferedWriter(new OutputStreamWriter(System.out));
    this.buddymap = new Hashtable<String, String>();
View Full Code Here


            NotifyEventListener notifyEventListener)
  {
    this(new User(account, password, "fetion.com.cn"),
        notifyEventListener,
        new AutoTransferFactory(),
        new SimpleFetionStore(),
        new ThreadTimer(),
        new SingleExecutor());
  }
View Full Code Here

TOP

Related Classes of net.solosky.maplefetion.store.SimpleFetionStore

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.