public void removeCustomer( String pCustomerId )
throws RemoveException, RemoteException
{
try {
getCustomerHome().findByPrimaryKey(
new CustomerPK( pCustomerId )
).remove();
}
catch( FinderException fe ) {
// When not found then ignore it because customer is already removed
}