类 AbstractTableStorageRequest
- java.lang.Object
-
- com.baidubce.model.AbstractBceRequest
-
- com.baidubce.services.tablestorage.model.AbstractTableStorageRequest
-
- 直接已知子类:
BatchRowRequest,CreateTableRequest,DeleteRowRequest,DropTableRequest,GetRowRequest,ListKeyRangesRequest,ListTablesRequest,PutRowRequest,ScanRequest,ShowTableRequest,UpdateTableRequest
public abstract class AbstractTableStorageRequest extends AbstractBceRequest
Base class for all TableStorage request objects.
-
-
方法概要
所有方法 实例方法 抽象方法 具体方法 修饰符和类型 方法 说明 StringgetTableName()Get the target table name.abstract StringtoJsonString()Convert this request to json string.AbstractTableStorageRequestwithRequestCredentials(BceCredentials credentials)Set bce credentials of this request.-
从类继承的方法 com.baidubce.model.AbstractBceRequest
getRequestCredentials, setRequestCredentials
-
-
-
-
方法详细资料
-
getTableName
public String getTableName()
Get the target table name.- 返回:
- return the target table name.
-
withRequestCredentials
public AbstractTableStorageRequest withRequestCredentials(BceCredentials credentials)
Set bce credentials of this request.- 指定者:
withRequestCredentials在类中AbstractBceRequest- 参数:
credentials- the bce credentials.- 返回:
- the reference of this request.
-
toJsonString
public abstract String toJsonString()
Convert this request to json string.- 返回:
- the json string represent this request.
-
-