SEARCH-1681 Adding the shard params instance to the RestInstanceModel (#33)

* SEARCH-1681 Adding the shard params instance to the RestInstanceModel

* SEARCH-1681 Adding the changes from the review
This commit is contained in:
Keerat Lalia
2020-02-04 13:47:11 +00:00
committed by GitHub
parent b1ad95a756
commit 50f884556c

View File

@@ -58,6 +58,9 @@ public class RestInstanceModel
/** Transactions remaining */
private Long transactionsRemaining;
/** Sharding Parameters */
private String shardParams;
/**
* @return the baseUrl
*/
@@ -233,4 +236,21 @@ public class RestInstanceModel
{
this.transactionsRemaining = transactionsRemaining;
}
/**
* @return the shardParams
*/
public String getShardParams()
{
return this.shardParams;
}
/**
* @param shardParams the shardParams to set
*/
public void setShardParams(String shardParams)
{
this.shardParams = shardParams;
}
}