You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by fm...@apache.org on 2011/03/29 15:30:21 UTC

svn commit: r1086577 - in /chemistry/dotcmis/trunk/DotCMIS: Properties/AssemblyInfo.cs client/client-intf.cs client/client-objects.cs

Author: fmui
Date: Tue Mar 29 13:30:21 2011
New Revision: 1086577

URL: http://svn.apache.org/viewvc?rev=1086577&view=rev
Log:
CMIS-343: added ParentId property

Modified:
    chemistry/dotcmis/trunk/DotCMIS/Properties/AssemblyInfo.cs
    chemistry/dotcmis/trunk/DotCMIS/client/client-intf.cs
    chemistry/dotcmis/trunk/DotCMIS/client/client-objects.cs

Modified: chemistry/dotcmis/trunk/DotCMIS/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/chemistry/dotcmis/trunk/DotCMIS/Properties/AssemblyInfo.cs?rev=1086577&r1=1086576&r2=1086577&view=diff
==============================================================================
--- chemistry/dotcmis/trunk/DotCMIS/Properties/AssemblyInfo.cs (original)
+++ chemistry/dotcmis/trunk/DotCMIS/Properties/AssemblyInfo.cs Tue Mar 29 13:30:21 2011
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
 // You can specify all the values or you can default the Build and Revision Numbers 
 // by using the '*' as shown below:
 // [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("0.1.1.0")]
+[assembly: AssemblyVersion("0.3.0.0")]
 [assembly: AssemblyFileVersion("1.0.0.0")]

Modified: chemistry/dotcmis/trunk/DotCMIS/client/client-intf.cs
URL: http://svn.apache.org/viewvc/chemistry/dotcmis/trunk/DotCMIS/client/client-intf.cs?rev=1086577&r1=1086576&r2=1086577&view=diff
==============================================================================
--- chemistry/dotcmis/trunk/DotCMIS/client/client-intf.cs (original)
+++ chemistry/dotcmis/trunk/DotCMIS/client/client-intf.cs Tue Mar 29 13:30:21 2011
@@ -930,6 +930,7 @@ namespace DotCMIS.Client
     /// </summary>
     public interface IFolderProperties
     {
+        string ParentId { get; }
         IList<IObjectType> AllowedChildObjectTypes { get; }
     }
 

Modified: chemistry/dotcmis/trunk/DotCMIS/client/client-objects.cs
URL: http://svn.apache.org/viewvc/chemistry/dotcmis/trunk/DotCMIS/client/client-objects.cs?rev=1086577&r1=1086576&r2=1086577&view=diff
==============================================================================
--- chemistry/dotcmis/trunk/DotCMIS/client/client-objects.cs (original)
+++ chemistry/dotcmis/trunk/DotCMIS/client/client-objects.cs Tue Mar 29 13:30:21 2011
@@ -1161,6 +1161,8 @@ namespace DotCMIS.Client.Impl
             return failed.Ids;
         }
 
+        public string ParentId { get { return GetPropertyValue(PropertyIds.ParentId) as string; } }
+
         public IList<IObjectType> AllowedChildObjectTypes
         {
             get