Package thread

Source Code of thread.ACServiceThread

package thread;
import cputils.CPHMACService;

/**
* (C) Copyright 2012 ZWW
*/

/**
* @author ZWW
* @date 2014-3-22 下午7:49:41
* @version V1.0
*/
public class ACServiceThread implements Runnable{
  private String issueNo;
  public ACServiceThread(String issueNo){
    this.issueNo = issueNo;
  }
 
  @Override
  public void run() {
    CPHMACService service = new CPHMACService();
    service.writeAicaiHMData(issueNo);
  }
 
}
TOP

Related Classes of thread.ACServiceThread

TOP
Copyright © 2018 www.massapi.com. 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.