use of org.dcache.srm.v2_2.SrmGetTransferProtocolsRequest in project dcache by dCache.
the class AxisSrmFileSystem method getTransferProtocols.
@Nonnull
@Override
public TSupportedTransferProtocol[] getTransferProtocols() throws SRMException, RemoteException {
SrmGetTransferProtocolsResponse response = srm.srmGetTransferProtocols(new SrmGetTransferProtocolsRequest());
checkSuccess(response.getReturnStatus());
TSupportedTransferProtocol[] protocolArray = response.getProtocolInfo().getProtocolArray();
return (protocolArray == null) ? new TSupportedTransferProtocol[0] : protocolArray;
}
Aggregations