comparison src/nabble/model/export/ImportServer.java @ 0:7ecd1a4ef557

add content
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 21 Mar 2019 19:15:52 -0600
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:7ecd1a4ef557
1 package nabble.model.export;
2
3 import java.net.MalformedURLException;
4 import java.rmi.Remote;
5 import java.rmi.RemoteException;
6
7
8 public interface ImportServer extends Remote {
9 public Import newImport(String permalink,long nodeId) throws RemoteException, MalformedURLException;
10 }