Package org.jboss.arquillian.qunit.showcase.model

Examples of org.jboss.arquillian.qunit.showcase.model.Car


@ApplicationScoped
public class CarRepository {

    public List<Car> findAllCars() {
        List<Car> list = new ArrayList<Car>(1);
        Car car = new Car("QWE123", "Model_1", "Black");
        list.add(car);
        return list;
    }
View Full Code Here

TOP

Related Classes of org.jboss.arquillian.qunit.showcase.model.Car

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.