
com.alicloud.openservices.tablestore.model.AbortTransactionRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tablestore Show documentation
Show all versions of tablestore Show documentation
Aliyun Open Services SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有
(C)阿里云计算有限公司 http://www.aliyun.com
package com.alicloud.openservices.tablestore.model;
public class AbortTransactionRequest implements Request {
/**
* 事务的ID。
*/
private String transactionID;
/**
* 设置事务的ID。
*/
public void setTransactionID(String transactionID) {
this.transactionID = transactionID;
}
/**
* 获取事务的ID。
*
* @return 事务的ID
*/
public String getTransactionID() {
return transactionID;
}
/**
* 初始化AbortTransactionRequest实例。
*
* @param transactionID 事务的ID。
*/
public AbortTransactionRequest(String transactionID) {
setTransactionID(transactionID);
}
@Override
public String getOperationName() {
return OperationNames.OP_ABORT_TRANSACTION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy