RemoteOndemandReportManager
public interface RemoteLargeReportManager
extends java.rmi.Remote
RemoteLargeReportManager
provides a remote manager
for a large report.Modifier and Type | Method and Description |
---|---|
java.lang.String |
getErrorMessage(java.lang.String resultName)
Deprecated.
Returns error message if the large report whose name is the same as the result name does not run correctly.
|
LargeReportRecord |
getLargeReportRecord(java.lang.String tempResultName)
Deprecated.
Gets the large report record of the temporary result.
|
java.util.Vector |
getLargeReports(java.lang.String userID)
Deprecated.
Gets large report records registered by user.
|
LargeReportRecord |
notifyCompleted(java.lang.String tempResultName)
Deprecated.
Notifies when the large report has finished running.
|
void |
removeLargeReport(java.lang.String tempResultName,
boolean isStop)
Deprecated.
Removes the temporary result for the large report record.
|
java.util.Vector getLargeReports(java.lang.String userID) throws java.rmi.RemoteException
userID
- The userID.java.rmi.RemoteException
- if communication-related error occurs during RMI call execution.LargeReportRecord getLargeReportRecord(java.lang.String tempResultName) throws java.rmi.RemoteException
tempResultName
- The temporary result name.java.rmi.RemoteException
- if communication-related error occurs during RMI call execution.LargeReportRecord notifyCompleted(java.lang.String tempResultName) throws java.rmi.RemoteException
tempResultName
- The temporary result name.java.rmi.RemoteException
- if communication-related error occurs during RMI call execution.void removeLargeReport(java.lang.String tempResultName, boolean isStop) throws java.rmi.RemoteException
tempResultName
- The temporary result name.isStop
- True to stop running the large report if it is still running.java.rmi.RemoteException
- if communication-related error occurs during RMI call execution.java.lang.String getErrorMessage(java.lang.String resultName) throws java.rmi.RemoteException
resultName
- The result name of the large report.java.rmi.RemoteException
- if communication-related error occurs during RMI call execution.