LogProcess.java 1.55 KB
Newer Older
Naung1 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
package com.csc.library.entity;

import java.rmi.RemoteException;
import java.sql.Timestamp;
import javax.ejb.EJBObject;

/**
 * <p>Title: Your Product Name</p>
 * <p>Description: Your description</p>
 * <p>Copyright: Copyright (c) 1999</p>
 * <p>Company: Your Company</p>
 * @author Your Name
 */
public interface LogProcess extends EJBObject {
	public String getProcessid() throws RemoteException;
	public String getName() throws RemoteException;
	public void setName(String name) throws RemoteException;
	public String getPtype() throws RemoteException;
	public void setPtype(String ptype) throws RemoteException;
	public String getPrclass() throws RemoteException;
	public void setPrclass(String prclass) throws RemoteException;
	public String getProcJoin() throws RemoteException;
	public void setProcJoin(String procJoin) throws RemoteException;
	public String getCondition() throws RemoteException;
	public void setCondition(String condition) throws RemoteException;
	public String getRefreshTime() throws RemoteException;
	public void setRefreshTime(String refreshTime) throws RemoteException;
	public Timestamp getLastupdate() throws RemoteException;
	public void setLastupdate(Timestamp lastupdate) throws RemoteException;
	public Timestamp getNextupdate() throws RemoteException;
	public void setNextupdate(Timestamp nextupdate) throws RemoteException;
	public String getResult() throws RemoteException;
	public void setResult(String result) throws RemoteException;
	public String getStatus() throws RemoteException;
	public void setStatus(String status) throws RemoteException;
TongZuu committed
36
}