mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged DEV/SWIFT to HEAD
27584: ALF-8189: RINF 16: Upgrade peer associations - Create scripts and upgrades to add alf_node_assoc.assoc_index for all DBs - Part of ALF-7404: RINF 16: Peer association enhancements 27640: Re-added changes from rev 27125, which were overwritten by 27584 (ALF-8334: RSOLR 013) 28295: (RECORD ONLY) Upgrade Tika and POI to the latest versions git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28309 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -37,6 +37,7 @@ public class NodeAssocEntity
|
||||
private NodeEntity sourceNode;
|
||||
private NodeEntity targetNode;
|
||||
private Long typeQNameId;
|
||||
private int assocIndex;
|
||||
private List<Long> typeQNameIds;
|
||||
|
||||
/**
|
||||
@@ -55,6 +56,7 @@ public class NodeAssocEntity
|
||||
.append(", sourceNode=").append(sourceNode)
|
||||
.append(", targetNode=").append(targetNode)
|
||||
.append(", typeQNameId=").append(typeQNameId)
|
||||
.append(", assocIndex=").append(assocIndex)
|
||||
.append(", typeQNameIds=").append(typeQNameIds)
|
||||
.append("]");
|
||||
return sb.toString();
|
||||
@@ -124,6 +126,16 @@ public class NodeAssocEntity
|
||||
this.typeQNameId = typeQNameId;
|
||||
}
|
||||
|
||||
public int getAssocIndex()
|
||||
{
|
||||
return assocIndex;
|
||||
}
|
||||
|
||||
public void setAssocIndex(int assocIndex)
|
||||
{
|
||||
this.assocIndex = assocIndex;
|
||||
}
|
||||
|
||||
public List<Long> getTypeQNameIds()
|
||||
{
|
||||
return typeQNameIds;
|
||||
|
Reference in New Issue
Block a user