Search in sources :

Example 46 with Book

use of com.google.example.library.v1.Book in project gapic-generator-java by googleapis.

the class SyncGetBookBookname method syncGetBookBookname.

public static void syncGetBookBookname() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        BookName name = BookName.of("[SHELF]", "[BOOK]");
        Book response = libraryServiceClient.getBook(name);
    }
}
Also used : LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) Book(com.google.example.library.v1.Book) BookName(com.google.example.library.v1.BookName)

Example 47 with Book

use of com.google.example.library.v1.Book in project gapic-generator-java by googleapis.

the class SyncGetBookString method syncGetBookString.

public static void syncGetBookString() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        String name = BookName.of("[SHELF]", "[BOOK]").toString();
        Book response = libraryServiceClient.getBook(name);
    }
}
Also used : LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) Book(com.google.example.library.v1.Book)

Example 48 with Book

use of com.google.example.library.v1.Book in project gapic-generator-java by googleapis.

the class AsyncListBooks method asyncListBooks.

public static void asyncListBooks() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        ListBooksRequest request = ListBooksRequest.newBuilder().setParent(ShelfName.of("[SHELF_ID]").toString()).setPageSize(883849137).setPageToken("pageToken873572522").build();
        ApiFuture<Book> future = libraryServiceClient.listBooksPagedCallable().futureCall(request);
        // Do something.
        for (Book element : future.get().iterateAll()) {
        // doThingsWith(element);
        }
    }
}
Also used : LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) Book(com.google.example.library.v1.Book) ListBooksRequest(com.google.example.library.v1.ListBooksRequest)

Example 49 with Book

use of com.google.example.library.v1.Book in project gapic-generator-java by googleapis.

the class AsyncMoveBook method asyncMoveBook.

public static void asyncMoveBook() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        MoveBookRequest request = MoveBookRequest.newBuilder().setName(BookName.of("[SHELF]", "[BOOK]").toString()).setOtherShelfName(ShelfName.of("[SHELF_ID]").toString()).build();
        ApiFuture<Book> future = libraryServiceClient.moveBookCallable().futureCall(request);
        // Do something.
        Book response = future.get();
    }
}
Also used : MoveBookRequest(com.google.example.library.v1.MoveBookRequest) LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) Book(com.google.example.library.v1.Book)

Example 50 with Book

use of com.google.example.library.v1.Book in project gapic-generator-java by googleapis.

the class SyncMoveBook method syncMoveBook.

public static void syncMoveBook() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        MoveBookRequest request = MoveBookRequest.newBuilder().setName(BookName.of("[SHELF]", "[BOOK]").toString()).setOtherShelfName(ShelfName.of("[SHELF_ID]").toString()).build();
        Book response = libraryServiceClient.moveBook(request);
    }
}
Also used : MoveBookRequest(com.google.example.library.v1.MoveBookRequest) LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) Book(com.google.example.library.v1.Book)

Aggregations

Book (com.google.example.library.v1.Book)33 Test (org.junit.Test)25 LibraryServiceClient (com.google.cloud.example.library.v1.LibraryServiceClient)22 Book (student_arturs_melnikovs.lesson_10.level_02.Book)16 BookName (com.google.example.library.v1.BookName)12 AbstractMessage (com.google.protobuf.AbstractMessage)12 ShelfName (com.google.example.library.v1.ShelfName)9 InvalidArgumentException (com.google.api.gax.rpc.InvalidArgumentException)7 StatusRuntimeException (io.grpc.StatusRuntimeException)7 MoveBookRequest (com.google.example.library.v1.MoveBookRequest)6 DeleteBookRequest (com.google.example.library.v1.DeleteBookRequest)5 Scanner (java.util.Scanner)5 CreateBookRequest (com.google.example.library.v1.CreateBookRequest)4 GetBookRequest (com.google.example.library.v1.GetBookRequest)4 Page (org.apache.wicket.Page)4 Book (org.apache.wicket.core.util.tester.apps_1.Book)4 WebPage (org.apache.wicket.markup.html.WebPage)4 AccessDeniedPage (org.apache.wicket.markup.html.pages.AccessDeniedPage)4 DummyPage (org.apache.wicket.resource.DummyPage)4 Book (org.apache.wicket.util.tester.apps_1.Book)4