Package org.ops4j.pax.exam.sample1.model

Examples of org.ops4j.pax.exam.sample1.model.Author


    public void fillLibrary() {
        if (libraryService.getNumBooks() != 0) {
            return;
        }

        Author mann = libraryService.createAuthor("Thomas", "Mann");
        Author steinbeck = libraryService.createAuthor("John", "Steinbeck");

        libraryService.createBook("Buddenbrooks", mann);
        libraryService.createBook("East of Eden", steinbeck);
    }
View Full Code Here


    @TransactionAttribute(TransactionAttributeType.SUPPORTS)
    public void fillLibrary() {
        if (getNumBooks() != 0) {
            return;
        }
        Author mann = createAuthor("Thomas", "Mann");
        Author steinbeck = createAuthor("John", "Steinbeck");

        createBook("Buddenbrooks", mann);
        createBook("East of Eden", steinbeck);
    }
View Full Code Here

        return books;
    }

    @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
    public Author createAuthor(String firstName, String lastName) {
        Author author = new Author();
        author.setFirstName(firstName);
        author.setLastName(lastName);
        em.persist(author);
        return author;
    }
View Full Code Here

TOP

Related Classes of org.ops4j.pax.exam.sample1.model.Author

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.