Remove the RemoteAccountService

Issue: SPR-12992
This commit is contained in:
Kazuki Shimizu
2015-05-06 19:15:25 +09:00
parent b8f10f69a9
commit e3bd728088

View File

@@ -81,18 +81,6 @@ model and corresponding services:
}
----
[source,java,indent=0]
[subs="verbatim,quotes"]
----
public interface RemoteAccountService extends Remote {
public void insertAccount(Account account) throws RemoteException;
public List<Account> getAccounts(String name) throws RemoteException;
}
----
[source,java,indent=0]
[subs="verbatim,quotes"]
----