コード例 #1
0
ファイル: ErosProxy.java プロジェクト: blarty/eros
 /* @see java.lang.Object#equals(java.lang.Object)
  */
 public boolean equals(Object obj) {
   return backend.equals(obj);
 }
コード例 #2
0
ファイル: ErosProxy.java プロジェクト: blarty/eros
 public long createInstanceRecord(InstanceDetail instanceDetail) throws RemoteException {
   // TODO Auto-generated method stub
   return backend.createInstanceRecord(instanceDetail);
 }
コード例 #3
0
ファイル: ErosProxy.java プロジェクト: blarty/eros
 public ErrorModel getErrorRecords(Date from, Date to) throws RemoteException {
   return backend.getErrorRecords(from, to);
 }
コード例 #4
0
ファイル: ErosProxy.java プロジェクト: blarty/eros
 /**
  * @param logDetail
  * @throws RemoteException
  */
 public void log(LogDetail logDetail) throws RemoteException {
   backend.log(logDetail);
 }
コード例 #5
0
ファイル: ErosProxy.java プロジェクト: blarty/eros
 /* @see java.lang.Object#toString()
  */
 public String toString() {
   return backend.toString();
 }
コード例 #6
0
ファイル: ErosProxy.java プロジェクト: blarty/eros
 /**
  * @return
  * @throws RemoteException
  */
 public ErosServiceStats getStats() throws RemoteException {
   return backend.getStats();
 }
コード例 #7
0
ファイル: ErosProxy.java プロジェクト: blarty/eros
 /* @see java.lang.Object#hashCode()
  */
 public int hashCode() {
   return backend.hashCode();
 }
コード例 #8
0
ファイル: ErosProxy.java プロジェクト: blarty/eros
 /**
  * @return
  * @throws RemoteException
  */
 public long getRecievedCount() throws RemoteException {
   return backend.getRecievedCount();
 }
コード例 #9
0
ファイル: ErosProxy.java プロジェクト: blarty/eros
 /**
  * @return
  * @throws RemoteException
  */
 public ErosLogger getLogger() throws RemoteException {
   return backend.getLogger();
 }
コード例 #10
0
ファイル: ErosProxy.java プロジェクト: blarty/eros
 /**
  * @return
  * @throws RemoteException
  */
 public long getErrorQueueSize() throws RemoteException {
   return backend.getErrorQueueSize();
 }
コード例 #11
0
ファイル: ErosProxy.java プロジェクト: blarty/eros
 /**
  * @return
  * @throws RemoteException
  */
 public long getCurrentQueueSize() throws RemoteException {
   return backend.getCurrentQueueSize();
 }
コード例 #12
0
ファイル: ErosProxy.java プロジェクト: blarty/eros
 /**
  * @return
  * @throws java.rmi.RemoteException
  */
 public Object getAdmin() throws RemoteException {
   return backend.getAdmin();
 }