Extended VersionDescriptor to include new short and long descriptions.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4292 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2006-11-06 05:09:51 +00:00
parent f501073de5
commit 7fdf8130c8
2 changed files with 41 additions and 3 deletions

View File

@@ -531,7 +531,9 @@ public class AVMStoreImpl implements AVMStore, Serializable
new VersionDescriptor(fName,
vr.getVersionID(),
vr.getCreator(),
vr.getCreateDate());
vr.getCreateDate(),
vr.getTag(),
vr.getDescription());
descs.add(desc);
}
return descs;
@@ -555,7 +557,9 @@ public class AVMStoreImpl implements AVMStore, Serializable
new VersionDescriptor(fName,
vr.getVersionID(),
vr.getCreator(),
vr.getCreateDate());
vr.getCreateDate(),
vr.getTag(),
vr.getDescription());
descs.add(desc);
}
return descs;