예제 #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();
 }