/* @see java.lang.Object#equals(java.lang.Object) */ public boolean equals(Object obj) { return backend.equals(obj); }
public long createInstanceRecord(InstanceDetail instanceDetail) throws RemoteException { // TODO Auto-generated method stub return backend.createInstanceRecord(instanceDetail); }
public ErrorModel getErrorRecords(Date from, Date to) throws RemoteException { return backend.getErrorRecords(from, to); }
/** * @param logDetail * @throws RemoteException */ public void log(LogDetail logDetail) throws RemoteException { backend.log(logDetail); }
/* @see java.lang.Object#toString() */ public String toString() { return backend.toString(); }
/** * @return * @throws RemoteException */ public ErosServiceStats getStats() throws RemoteException { return backend.getStats(); }
/* @see java.lang.Object#hashCode() */ public int hashCode() { return backend.hashCode(); }
/** * @return * @throws RemoteException */ public long getRecievedCount() throws RemoteException { return backend.getRecievedCount(); }
/** * @return * @throws RemoteException */ public ErosLogger getLogger() throws RemoteException { return backend.getLogger(); }
/** * @return * @throws RemoteException */ public long getErrorQueueSize() throws RemoteException { return backend.getErrorQueueSize(); }
/** * @return * @throws RemoteException */ public long getCurrentQueueSize() throws RemoteException { return backend.getCurrentQueueSize(); }
/** * @return * @throws java.rmi.RemoteException */ public Object getAdmin() throws RemoteException { return backend.getAdmin(); }