Search in sources :

Example 26 with ListOfBooks

use of org.talend.types.test.library.common._1.ListOfBooks in project tesb-rt-se by Talend.

the class LibraryServerImpl method seekBook.

@Override
public ListOfBooks seekBook(SearchFor body) throws SeekBookError {
    System.out.println("***************************************************************");
    System.out.println("*** seekBook request (Request-Response operation) is received *");
    System.out.println("***************************************************************");
    showSeekBookRequest(body);
    List<String> authorsLastNames = body.getAuthorLastName();
    if (authorsLastNames != null && authorsLastNames.size() > 0) {
        String authorsLastName = authorsLastNames.get(0);
        if (authorsLastName != null && authorsLastName.length() > 0 && !"Icebear".equalsIgnoreCase(authorsLastName)) {
            SeekBookError e = prepareException("No book available from author " + authorsLastName);
            System.out.println("No book available from author " + authorsLastName);
            System.out.println("\nSending business fault (SeekBook error) with parameters:");
            throw e;
        }
    }
    ListOfBooks result = new ListOfBooks();
    BookType book = new BookType();
    result.getBook().add(book);
    PersonType author = new PersonType();
    book.getAuthor().add(author);
    author.setFirstName("Jack");
    author.setLastName("Icebear");
    Calendar dateOfBirth = new GregorianCalendar(101, Calendar.JANUARY, 2);
    author.setDateOfBirth(dateOfBirth.getTime());
    book.getTitle().add("Survival in the Arctic");
    book.getPublisher().add("Frosty Edition");
    book.setYearPublished("2010");
    System.out.println("Book(s) is found:");
    showSeekBookResponse(result);
    return result;
}
Also used : BookType(org.talend.types.test.library.common._1.BookType) SeekBookError(org.talend.services.test.library._1_0.SeekBookError) GregorianCalendar(java.util.GregorianCalendar) Calendar(java.util.Calendar) GregorianCalendar(java.util.GregorianCalendar) PersonType(org.talend.types.test.library.common._1.PersonType) ListOfBooks(org.talend.types.test.library.common._1.ListOfBooks)

Example 27 with ListOfBooks

use of org.talend.types.test.library.common._1.ListOfBooks in project tesb-rt-se by Talend.

the class CompressionAssertionTest method searchFor.

private ListOfBooks searchFor(String authorLastName, String isbn, Library client) throws SeekBookError {
    SearchFor request = new SearchFor();
    request.getAuthorLastName().add(authorLastName);
    request.setISBNNumber(isbn);
    return client.seekBook(request);
}
Also used : SearchFor(org.talend.types.test.library.common._1.SearchFor)

Example 28 with ListOfBooks

use of org.talend.types.test.library.common._1.ListOfBooks in project tesb-rt-se by Talend.

the class CompressionFeatureTest method searchFor.

private ListOfBooks searchFor(String authorLastName, String isbn, Library client) throws SeekBookError {
    SearchFor request = new SearchFor();
    request.getAuthorLastName().add(authorLastName);
    request.setISBNNumber(isbn);
    return client.seekBook(request);
}
Also used : SearchFor(org.talend.types.test.library.common._1.SearchFor)

Example 29 with ListOfBooks

use of org.talend.types.test.library.common._1.ListOfBooks in project tesb-rt-se by Talend.

the class CorrelationFeatureTest method searchFor.

private ListOfBooks searchFor(String authorLastName, Library client) throws SeekBookError {
    SearchFor request = new SearchFor();
    request.getAuthorLastName().add(authorLastName);
    request.setPublisher("Frosty Edition");
    return client.seekBook(request);
}
Also used : SearchFor(org.talend.types.test.library.common._1.SearchFor)

Example 30 with ListOfBooks

use of org.talend.types.test.library.common._1.ListOfBooks in project tesb-rt-se by Talend.

the class CorrelationIdAssertionTest method searchFor.

private ListOfBooks searchFor(String authorLastName, Library client) throws SeekBookError {
    SearchFor request = new SearchFor();
    request.getAuthorLastName().add(authorLastName);
    request.setPublisher("Frosty Edition");
    return client.seekBook(request);
}
Also used : SearchFor(org.talend.types.test.library.common._1.SearchFor)

Aggregations

ListOfBooks (org.talend.types.test.library.common._1.ListOfBooks)21 SearchFor (org.talend.types.test.library.common._1.SearchFor)18 SeekBookError (org.talend.services.test.library._1_0.SeekBookError)16 Calendar (java.util.Calendar)7 GregorianCalendar (java.util.GregorianCalendar)7 Library (org.talend.services.test.library._1_0.Library)6 ListOfBooks (org.talend.types.demos.library.common._1.ListOfBooks)6 BookType (org.talend.types.test.library.common._1.BookType)5 PersonType (org.talend.types.test.library.common._1.PersonType)5 SeekBookError (org.talend.services.demos.library._1_0.SeekBookError)3 BookType (org.talend.types.demos.library.common._1.BookType)3 PersonType (org.talend.types.demos.library.common._1.PersonType)3 SearchFor (org.talend.types.demos.library.common._1.SearchFor)3 HashMap (java.util.HashMap)1 BindingProvider (javax.xml.ws.BindingProvider)1 CallContext (org.talend.esb.mep.requestcallback.feature.CallContext)1 CallContextStore (org.talend.esb.mep.requestcallback.impl.callcontext.CallContextStore)1 LibraryConsumer (org.talend.services.demos.library._1_0.LibraryConsumer)1