mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user