Search in sources :

Example 51 with Book

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

the class SyncMoveBookStringString method syncMoveBookStringString.

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

Example 52 with Book

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

the class SyncDeleteBook method syncDeleteBook.

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

Example 53 with Book

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

the class AsyncCreateBook method asyncCreateBook.

public static void asyncCreateBook() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        CreateBookRequest request = CreateBookRequest.newBuilder().setParent(ShelfName.of("[SHELF_ID]").toString()).setBook(Book.newBuilder().build()).build();
        ApiFuture<Book> future = libraryServiceClient.createBookCallable().futureCall(request);
        // Do something.
        Book response = future.get();
    }
}
Also used : CreateBookRequest(com.google.example.library.v1.CreateBookRequest) LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) Book(com.google.example.library.v1.Book)

Example 54 with Book

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

the class SyncCreateBook method syncCreateBook.

public static void syncCreateBook() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        CreateBookRequest request = CreateBookRequest.newBuilder().setParent(ShelfName.of("[SHELF_ID]").toString()).setBook(Book.newBuilder().build()).build();
        Book response = libraryServiceClient.createBook(request);
    }
}
Also used : CreateBookRequest(com.google.example.library.v1.CreateBookRequest) LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) Book(com.google.example.library.v1.Book)

Example 55 with Book

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

the class SyncCreateBookShelfnameBook method syncCreateBookShelfnameBook.

public static void syncCreateBookShelfnameBook() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        ShelfName parent = ShelfName.of("[SHELF_ID]");
        Book book = Book.newBuilder().build();
        Book response = libraryServiceClient.createBook(parent, book);
    }
}
Also used : LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) Book(com.google.example.library.v1.Book) ShelfName(com.google.example.library.v1.ShelfName)

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