RentalServiceImpl.java

// license-header java merge-point
/**
 * This is only generated once! It will never be overwritten.
 * You can (and have to!) safely modify it by hand.
 * TEMPLATE:    SpringServiceImpl.vsl in andromda-spring cartridge
 * MODEL CLASS: SpringCartridge How to Model::Spring Example::org.andromda.test::RentalService
 * STEREOTYPE:  Service
 */
package org.andromda.test;

import java.util.Collection;

/**
 * @see org.andromda.test.RentalService
 */
public class RentalServiceImpl
    extends RentalServiceBase
{

    /**
     * @see org.andromda.test.RentalService#getAllCars()
     */
    protected  Collection<Car> handleGetAllCars()
        throws Exception
    {
        // TODO implement protected  Collection<Car> handleGetAllCars()
        throw new UnsupportedOperationException("org.andromda.test.RentalService.handleGetAllCars() Not implemented!");
    }

    /**
     * @see org.andromda.test.RentalService#getCustomersByName(String)
     */
    protected  Collection<Person> handleGetCustomersByName(String name)
        throws Exception
    {
        // TODO implement protected  Collection<Person> handleGetCustomersByName(String name)
        throw new UnsupportedOperationException("org.andromda.test.RentalService.handleGetCustomersByName(String name) Not implemented!");
    }

}