if (args[0] instanceof String)
return new FileTransferID(this, new URI((String) args[0]));
if (args[0] instanceof URI)
return new FileTransferID(this, (URI) args[0]);
} catch (Exception e) {
throw new IDCreateException(Messages.FileTransferNamespace_Exception_Create_Instance, e);
}
throw new IDCreateException(Messages.FileTransferNamespace_Exception_Create_Instance_Failed);
}