/*******************************************************************************
* Copyright (c) 2007, 2014 compeople AG 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:
* compeople AG - initial API and implementation
*******************************************************************************/
package org.eclipse.riena.demo.server;
import java.util.List;
import org.eclipse.riena.demo.common.Customer;
import org.eclipse.riena.demo.common.ICustomerService;
/**
*
*/
public class CustomerService implements ICustomerService {
private ICustomerRepository repository;
/**
*
* @param repository
*/
public CustomerService() {
System.out.println("customer service started"); //$NON-NLS-1$
}
public void bind(final ICustomerRepository repository) {
System.out.println("customer service:repository bound"); //$NON-NLS-1$
this.repository = repository;
}
public void unbind(final ICustomerRepository repository) {
System.out.println("customer service:repository unbound"); //$NON-NLS-1$
this.repository = null;
}
public ICustomerRepository getRepository() {
return repository;
}
/**
*
*
*/
public List<Customer> search(final String lastName) {
// check parameter
// perform search
return repository.search(lastName);
}
public boolean store(final Customer customer) {
// checkCustomer object
try {
repository.store(customer);
return true;
} catch (final RuntimeException r) {
return false;
}
}
/*
* (non-Javadoc)
*
* @see
* org.eclipse.riena.demo.common.ICustomerService#searchWithEmailAddress
* (java.lang.String)
*/
public Customer findCustomerWithEmailAddress(final String emailAddress) {
// perform search for customer by means of customer's email address
return repository.findCustomerWithEmailAddress(emailAddress);
}
}