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