/*
 * Created on 07-Oct-2004
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package uk.ac.roe.wfau;
import java.text.*;
import java.rmi.server.UID;

import java.util.Calendar;
/**
 * @author mar
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class HostProcessNumber {
    static DecimalFormat i3 = new DecimalFormat("000");
    static DecimalFormat i4 = new DecimalFormat("0000");
    static Calendar rightNow=Calendar.getInstance();
    static UID uid= new UID();
 
  public static String getHotProcessNumber(String number, int runningNumber){
//      return number+i4.format(runningNumber)+i3.format(rightNow.get(Calendar.MILLISECOND));
  System.out.println(rightNow.getTimeInMillis());
      return uid.toString();  
      
  }
}
