diff 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
line wrap: on
line diff
--- a/src/nabble/model/export/Import.java	Mon Jun 14 15:35:05 2021 -0600
+++ b/src/nabble/model/export/Import.java	Fri Jun 18 17:44:24 2021 -0600
@@ -9,12 +9,6 @@
 	public static final class BadLink extends Exception {}
 	public long getNodeId(String permalink) throws RemoteException, BadLink;
 	public String importNode(NodeData nodeData) throws RemoteException;
-	public void setMailingList(Long nodeId) throws RemoteException;
-	public void subscribe(long nodeId) throws RemoteException;
-	public void setExportOwner(long nodeId,String exportOwner) throws RemoteException;
 	public void addUser(String name, String email, String password, Date registrationDate, String smallAvatarUrl, String bigAvatarUrl) throws RemoteException;
 	public void close() throws RemoteException;
-
-	/** FOR OLD NABBLE ONLY -- TO BE REMOVED SOON */
-	public void addUser0(String name, String email, String password, long registrationDate) throws RemoteException;
 }