Class GoogleSheetsResource
- java.lang.Object
-
- org.apache.camel.quarkus.component.google.it.GoogleSheetsResource
-
@Path("/google-sheets") public class GoogleSheetsResource extends Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) org.apache.camel.ProducerTemplateproducerTemplate
-
Constructor Summary
Constructors Constructor Description GoogleSheetsResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.ResponsecreateSheet(String title)javax.ws.rs.core.ResponsereadSheet(String spreadsheetId)javax.ws.rs.core.ResponseupdateSheet(String spreadsheetId, String title)
-
-
-
Method Detail
-
createSheet
@Path("/create") @POST @Consumes("text/plain") @Produces("text/plain") public javax.ws.rs.core.Response createSheet(String title) throws Exception- Throws:
Exception
-
readSheet
@Path("/read") @GET @Produces("text/plain") public javax.ws.rs.core.Response readSheet(@QueryParam("spreadsheetId") String spreadsheetId)
-
-