Module com.s8.api

Class GetRowS8Request

java.lang.Object
com.s8.api.flow.table.requests.GetRowS8Request

public abstract class GetRowS8Request extends Object
A Request object to get a row in a specific table
Author:
Pierre Convert Copyright (C) 2025, Pierre Convert. All rights reserved.
  • Field Details

    • tableId

      public final String tableId
      table id
    • rowKey

      public final String rowKey
      row key
  • Constructor Details

    • GetRowS8Request

      public GetRowS8Request(String tableId, String rowKey)
      Main constructor
      Parameters:
      tableId - the id of the table
      rowKey - the key of the row
  • Method Details

    • onSucceed

      public abstract void onSucceed(GetRowS8Request.Status status, RowS8Object record)
      Callback method run upon request successful processing
      Parameters:
      status - the response status
      record - the response value
    • onFailed

      public abstract void onFailed(Exception exception)
      Callback method run upon request failed processing
      Parameters:
      exception - the exception raised