comparison src/nabble/model/export/Import.java @ 47:72765b66e2c3

remove mailing list code
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 18 Jun 2021 17:44:24 -0600
parents 7ecd1a4ef557
children
comparison
equal deleted inserted replaced
46:7ac7f55e16cf 47:72765b66e2c3
7 7
8 public interface Import extends Remote { 8 public interface Import extends Remote {
9 public static final class BadLink extends Exception {} 9 public static final class BadLink extends Exception {}
10 public long getNodeId(String permalink) throws RemoteException, BadLink; 10 public long getNodeId(String permalink) throws RemoteException, BadLink;
11 public String importNode(NodeData nodeData) throws RemoteException; 11 public String importNode(NodeData nodeData) throws RemoteException;
12 public void setMailingList(Long nodeId) throws RemoteException;
13 public void subscribe(long nodeId) throws RemoteException;
14 public void setExportOwner(long nodeId,String exportOwner) throws RemoteException;
15 public void addUser(String name, String email, String password, Date registrationDate, String smallAvatarUrl, String bigAvatarUrl) throws RemoteException; 12 public void addUser(String name, String email, String password, Date registrationDate, String smallAvatarUrl, String bigAvatarUrl) throws RemoteException;
16 public void close() throws RemoteException; 13 public void close() throws RemoteException;
17
18 /** FOR OLD NABBLE ONLY -- TO BE REMOVED SOON */
19 public void addUser0(String name, String email, String password, long registrationDate) throws RemoteException;
20 } 14 }