Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
7999499eee1fc932aeef9a813206d37313d7a753
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package common;

import java.rmi.Remote;
import java.rmi.RemoteException;

import domain.Account;
import domain.Owner;

public interface AccountInterface extends Remote{
	

	public boolean addAccount(Account ac) throws RemoteException;
	
	public boolean removeAccount(Account ac) throws RemoteException;
}

Commits for RRRRHHHH_CoderuralHouses client/src/common/AccountInterface.java

Diff revisions: vs.
Revision Author Commited Message
799949 ... Diff Diff epinzolas001 Mon 18 May, 2015 11:12:36 +0000

debugging

4f8bcc ... epinzolas001 Mon 18 May, 2015 09:49:54 +0000

Merge conflicts solutioned