1
2
3
4
5
6
7
8 package org.ogf.srm11.service;
9
10 public interface ISRM extends java.rmi.Remote {
11 public org.ogf.srm11.bean.RequestStatus put(java.lang.String[] arg0, java.lang.String[] arg1, long[] arg2, boolean[] arg3, java.lang.String[] arg4) throws java.rmi.RemoteException;
12 public org.ogf.srm11.bean.RequestStatus get(java.lang.String[] arg0, java.lang.String[] arg1) throws java.rmi.RemoteException;
13 public org.ogf.srm11.bean.RequestStatus copy(java.lang.String[] arg0, java.lang.String[] arg1, boolean[] arg2) throws java.rmi.RemoteException;
14 public boolean ping() throws java.rmi.RemoteException;
15 public org.ogf.srm11.bean.RequestStatus pin(java.lang.String[] arg0) throws java.rmi.RemoteException;
16 public org.ogf.srm11.bean.RequestStatus unPin(java.lang.String[] arg0, int arg1) throws java.rmi.RemoteException;
17 public org.ogf.srm11.bean.RequestStatus setFileStatus(int arg0, int arg1, java.lang.String arg2) throws java.rmi.RemoteException;
18 public org.ogf.srm11.bean.RequestStatus getRequestStatus(int arg0) throws java.rmi.RemoteException;
19 public org.ogf.srm11.bean.FileMetaData[] getFileMetaData(java.lang.String[] arg0) throws java.rmi.RemoteException;
20 public org.ogf.srm11.bean.RequestStatus mkPermanent(java.lang.String[] arg0) throws java.rmi.RemoteException;
21 public org.ogf.srm11.bean.RequestStatus getEstGetTime(java.lang.String[] arg0, java.lang.String[] arg1) throws java.rmi.RemoteException;
22 public org.ogf.srm11.bean.RequestStatus getEstPutTime(java.lang.String[] arg0, java.lang.String[] arg1, long[] arg2, boolean[] arg3, java.lang.String[] arg4) throws java.rmi.RemoteException;
23 public void advisoryDelete(java.lang.String[] arg0) throws java.rmi.RemoteException;
24 public java.lang.String[] getProtocols() throws java.rmi.RemoteException;
25 }