/******************************************************************************* * Copyright (c) 2012 Kai Toedter and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html. * * Contributors: * Kai Toedter - initial API and implementation ******************************************************************************/ package com.toedter.gwt.demo.contacts.server; import java.util.List; import com.google.gwt.user.server.rpc.RemoteServiceServlet; import com.toedter.gwt.demo.contacts.client.IContactService; import com.toedter.gwt.demo.contacts.shared.Contact; @SuppressWarnings("serial") public class ContactService extends RemoteServiceServlet implements IContactService { private final ContactManager contactManager; public ContactService() { contactManager = new ContactManager(); } @Override public List<Contact> getAllContacts() throws IllegalArgumentException { return contactManager.getContacts(); } @Override public Contact getContact(String email) throws IllegalArgumentException { return contactManager.getContactByEmail(email); } @Override public void addContact(Contact contact) { contactManager.addContact(contact); } @Override public void saveContact(Contact contact) { contactManager.saveContact(contact); } @Override public void deleteContact(Contact contact) { contactManager.deleteContact(contact); } }