mirror of
https://github.com/Alfresco/SearchServices.git
synced 2026-09-16 18:12:56 +00:00
[SEARCH-1643]
explicitShardId from int to Integer
This commit is contained in:
+64
-64
@@ -1,28 +1,28 @@
|
||||
/*
|
||||
* #%L
|
||||
* Alfresco Solr Client
|
||||
* %%
|
||||
* Copyright (C) 2005 - 2016 Alfresco Software Limited
|
||||
* %%
|
||||
* This file is part of the Alfresco software.
|
||||
* If the software was purchased under a paid Alfresco license, the terms of
|
||||
* the paid license agreement will prevail. Otherwise, the software is
|
||||
* provided under the following open source license terms:
|
||||
*
|
||||
* Alfresco is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Alfresco is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
||||
* #L%
|
||||
*/
|
||||
/*
|
||||
* #%L
|
||||
* Alfresco Solr Client
|
||||
* %%
|
||||
* Copyright (C) 2005 - 2016 Alfresco Software Limited
|
||||
* %%
|
||||
* This file is part of the Alfresco software.
|
||||
* If the software was purchased under a paid Alfresco license, the terms of
|
||||
* the paid license agreement will prevail. Otherwise, the software is
|
||||
* provided under the following open source license terms:
|
||||
*
|
||||
* Alfresco is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Alfresco is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
||||
* #L%
|
||||
*/
|
||||
package org.alfresco.solr.client;
|
||||
|
||||
public class Node
|
||||
@@ -37,9 +37,9 @@ public class Node
|
||||
private long txnId;
|
||||
private SolrApiNodeStatus status;
|
||||
private String tenant;
|
||||
private long aclId;
|
||||
private long aclId;
|
||||
private String shardPropertyValue;
|
||||
private int explicitShardId;
|
||||
private Integer explicitShardId;
|
||||
|
||||
public long getId()
|
||||
{
|
||||
@@ -100,44 +100,44 @@ public class Node
|
||||
public void setAclId(long aclId)
|
||||
{
|
||||
this.aclId = aclId;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* The property value to use for sharding - as requested
|
||||
*
|
||||
* @return null - if the node does not have the property, the standard "String" value of the property if it is present on the node.
|
||||
* For dates and datetime properties this will be the ISO formatted datetime.
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* The property value to use for sharding - as requested
|
||||
*
|
||||
* @return null - if the node does not have the property, the standard "String" value of the property if it is present on the node.
|
||||
* For dates and datetime properties this will be the ISO formatted datetime.
|
||||
*/
|
||||
public String getShardPropertyValue()
|
||||
{
|
||||
return this.shardPropertyValue;
|
||||
}
|
||||
|
||||
public void setShardPropertyValue(String shardPropertyValue)
|
||||
{
|
||||
this.shardPropertyValue = shardPropertyValue;
|
||||
}
|
||||
|
||||
public int getExplicitShardId()
|
||||
{
|
||||
return this.explicitShardId;
|
||||
}
|
||||
|
||||
public void setExplicitShardId(int explicitShardId)
|
||||
{
|
||||
this.explicitShardId = explicitShardId;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "Node [id=" + this.id + ", nodeRef=" + this.nodeRef + ", txnId=" + this.txnId
|
||||
+ ", status=" + this.status + ", tenant=" + this.tenant + ", aclId="
|
||||
+ this.aclId + ", shardPropertyValue=" + this.shardPropertyValue
|
||||
+ ", explicitShardId=" + this.explicitShardId + "]";
|
||||
}
|
||||
|
||||
public String getShardPropertyValue()
|
||||
{
|
||||
return this.shardPropertyValue;
|
||||
}
|
||||
|
||||
public void setShardPropertyValue(String shardPropertyValue)
|
||||
{
|
||||
this.shardPropertyValue = shardPropertyValue;
|
||||
}
|
||||
|
||||
public Integer getExplicitShardId()
|
||||
{
|
||||
return this.explicitShardId;
|
||||
}
|
||||
|
||||
public void setExplicitShardId(Integer explicitShardId)
|
||||
{
|
||||
this.explicitShardId = explicitShardId;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "Node [id=" + this.id + ", nodeRef=" + this.nodeRef + ", txnId=" + this.txnId
|
||||
+ ", status=" + this.status + ", tenant=" + this.tenant + ", aclId="
|
||||
+ this.aclId + ", shardPropertyValue=" + this.shardPropertyValue
|
||||
+ ", explicitShardId=" + this.explicitShardId + "]";
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user