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 2010/11/17 10:59:07 UTC

svn commit: r1035966 [2/3] - in /incubator/chemistry/opencmis/trunk: chemistry-opencmis-client/chemistry-opencmis-client-api/src/main/java/org/apache/chemistry/opencmis/client/api/ chemistry-opencmis-client/chemistry-opencmis-client-bindings/src/main/j...

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/data/CmisExtensionElement.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/data/CmisExtensionElement.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/data/CmisExtensionElement.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/data/CmisExtensionElement.java Wed Nov 17 09:59:05 2010
@@ -18,13 +18,14 @@
  */
 package org.apache.chemistry.opencmis.commons.data;
 
+import java.io.Serializable;
 import java.util.List;
 import java.util.Map;
 
 /**
  * This class represents one node in the extension tree.
  */
-public interface CmisExtensionElement {
+public interface CmisExtensionElement extends Serializable {
 
     /**
      * Returns the name of the extension. The name is never <code>null</code>.

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/data/ExtensionsData.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/data/ExtensionsData.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/data/ExtensionsData.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/data/ExtensionsData.java Wed Nov 17 09:59:05 2010
@@ -18,12 +18,13 @@
  */
 package org.apache.chemistry.opencmis.commons.data;
 
+import java.io.Serializable;
 import java.util.List;
 
 /**
  * Holds extension data either set by the CMIS repository or the client.
  */
-public interface ExtensionsData {
+public interface ExtensionsData extends Serializable {
 
     List<CmisExtensionElement> getExtensions();
 

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AbstractExtensionData.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AbstractExtensionData.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AbstractExtensionData.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AbstractExtensionData.java Wed Nov 17 09:59:05 2010
@@ -28,6 +28,8 @@ import org.apache.chemistry.opencmis.com
  */
 public abstract class AbstractExtensionData implements ExtensionsData {
 
+    private static final long serialVersionUID = 1L;
+
     private List<CmisExtensionElement> extensions;
 
     public List<CmisExtensionElement> getExtensions() {

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AbstractPropertyData.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AbstractPropertyData.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AbstractPropertyData.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AbstractPropertyData.java Wed Nov 17 09:59:05 2010
@@ -26,105 +26,74 @@ import org.apache.chemistry.opencmis.com
 
 /**
  * Abstract property data implementation.
- * 
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
  */
 public abstract class AbstractPropertyData<T> extends AbstractExtensionData implements PropertyData<T> {
 
-    private String fId;
-    private String fDisplayName;
-    private String fLocalName;
-    private String fQueryName;
-
-    private List<T> fValues;
-
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.PropertyData#getId()
-     */
+    private static final long serialVersionUID = 1L;
+
+    private String id;
+    private String displayName;
+    private String localName;
+    private String queryName;
+
+    private List<T> values;
+
     public String getId() {
-        return fId;
+        return id;
     }
 
     public void setId(String id) {
-        fId = id;
+        this.id = id;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.PropertyData#getDisplayName()
-     */
     public String getDisplayName() {
-        return fDisplayName;
+        return displayName;
     }
 
     public void setDisplayName(String displayName) {
-        fDisplayName = displayName;
+        this.displayName = displayName;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.PropertyData#getLocalName()
-     */
     public String getLocalName() {
-        return fLocalName;
+        return localName;
     }
 
     public void setLocalName(String localName) {
-        fLocalName = localName;
+        this.localName = localName;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.PropertyData#getQueryName()
-     */
     public String getQueryName() {
-        return fQueryName;
+        return queryName;
     }
 
     public void setQueryName(String queryName) {
-        fQueryName = queryName;
+        this.queryName = queryName;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.PropertyData#getValues()
-     */
     public List<T> getValues() {
-        return fValues;
+        return values;
     }
 
     public void setValues(List<T> values) {
         if (values == null) {
-            fValues = Collections.emptyList();
+            this.values = Collections.emptyList();
         } else {
-            fValues = values;
+            this.values = values;
         }
     }
 
     public void setValue(T value) {
         if (value == null) {
-            fValues = Collections.emptyList();
+            values = Collections.emptyList();
         } else {
-            fValues = new ArrayList<T>(1);
-            fValues.add(value);
+            values = new ArrayList<T>(1);
+            values.add(value);
         }
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.PropertyData#getFirstValue()
-     */
     public T getFirstValue() {
-        if ((fValues != null) && (!fValues.isEmpty())) {
-            return fValues.get(0);
+        if ((values != null) && (!values.isEmpty())) {
+            return values.get(0);
         }
 
         return null;
@@ -132,7 +101,7 @@ public abstract class AbstractPropertyDa
 
     @Override
     public String toString() {
-        return "Property [id=" + fId + ", display Name=" + fDisplayName + ", local name=" + fLocalName
-                + ", query name=" + fQueryName + ", values=" + fValues + "]" + super.toString();
+        return "Property [id=" + id + ", display Name=" + displayName + ", local name=" + localName + ", query name="
+                + queryName + ", values=" + values + "]" + super.toString();
     }
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AccessControlEntryImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AccessControlEntryImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AccessControlEntryImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AccessControlEntryImpl.java Wed Nov 17 09:59:05 2010
@@ -25,15 +25,14 @@ import org.apache.chemistry.opencmis.com
 
 /**
  * Access Control Entry data implementation.
- * 
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
  */
 public class AccessControlEntryImpl extends AbstractExtensionData implements Ace {
 
-    private List<String> fPermissions;
-    private Principal fPrincipal;
-    private boolean fIsDirect = true;
+    private static final long serialVersionUID = 1L;
+
+    private List<String> permissions;
+    private Principal principal;
+    private boolean isDirect = true;
 
     /**
      * Constructor.
@@ -49,59 +48,37 @@ public class AccessControlEntryImpl exte
         setPermissions(permissions);
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see
-     * org.apache.opencmis.client.provider.AccessControlEntry#getPrincipal()
-     */
     public Principal getPrincipal() {
-        return fPrincipal;
+        return principal;
     }
 
     public String getPrincipalId() {
-        return fPrincipal == null ? null : fPrincipal.getId();
+        return principal == null ? null : principal.getId();
     }
 
     public void setPrincipal(Principal principal) {
-        fPrincipal = principal;
+        this.principal = principal;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see
-     * org.apache.opencmis.client.provider.AccessControlEntry#getPermissions()
-     */
     public List<String> getPermissions() {
-        return fPermissions;
+        return permissions;
     }
 
     public void setPermissions(List<String> permissions) {
-        fPermissions = permissions;
+        this.permissions = permissions;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.AccessControlEntry#isDirect()
-     */
     public boolean isDirect() {
-        return fIsDirect;
+        return isDirect;
     }
 
     public void setDirect(boolean direct) {
-        fIsDirect = direct;
+        this.isDirect = direct;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see java.lang.Object#toString()
-     */
     @Override
     public String toString() {
-        return "Access Control Entry [principal=" + fPrincipal + ", permissions=" + fPermissions + ", is direct="
-                + fIsDirect + "]" + super.toString();
+        return "Access Control Entry [principal=" + principal + ", permissions=" + permissions + ", is direct="
+                + isDirect + "]" + super.toString();
     }
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AccessControlListImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AccessControlListImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AccessControlListImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AccessControlListImpl.java Wed Nov 17 09:59:05 2010
@@ -25,14 +25,13 @@ import org.apache.chemistry.opencmis.com
 
 /**
  * Access control list data implementation.
- * 
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
  */
 public class AccessControlListImpl extends AbstractExtensionData implements Acl {
 
-    private List<Ace> fAces;
-    private Boolean fIsExact;
+    private static final long serialVersionUID = 1L;
+
+    private List<Ace> aces;
+    private Boolean isExact;
 
     /**
      * Constructor.
@@ -47,39 +46,24 @@ public class AccessControlListImpl exten
         setAces(aces);
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.AccessControlList#getACEs()
-     */
     public List<Ace> getAces() {
-        return fAces;
+        return aces;
     }
 
     public void setAces(List<Ace> aces) {
-        fAces = aces;
+        this.aces = aces;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.AccessControlList#isExact()
-     */
     public Boolean isExact() {
-        return fIsExact;
+        return isExact;
     }
 
     public void setExact(Boolean isExact) {
-        fIsExact = isExact;
+        this.isExact = isExact;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see java.lang.Object#toString()
-     */
     @Override
     public String toString() {
-        return "Access Control List [ACEs=" + fAces + ", is exact=" + fIsExact + "]" + super.toString();
+        return "Access Control List [ACEs=" + aces + ", is exact=" + isExact + "]" + super.toString();
     }
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AccessControlPrincipalDataImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AccessControlPrincipalDataImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AccessControlPrincipalDataImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AccessControlPrincipalDataImpl.java Wed Nov 17 09:59:05 2010
@@ -21,12 +21,13 @@ package org.apache.chemistry.opencmis.co
 import org.apache.chemistry.opencmis.commons.data.Principal;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * AccessControlPrincipalData implementation.
  */
 public class AccessControlPrincipalDataImpl extends AbstractExtensionData implements Principal {
 
-    private String fPrincipalId;
+    private static final long serialVersionUID = 1L;
+
+    private String principalId;
 
     /**
      * Constructor.
@@ -41,28 +42,16 @@ public class AccessControlPrincipalDataI
         setPrincipalId(principalId);
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see
-     * org.apache.opencmis.client.provider.AccessControlPrincipalData#getPrincipalId
-     * ()
-     */
     public String getId() {
-        return fPrincipalId;
+        return principalId;
     }
 
     public void setPrincipalId(String principalId) {
-        fPrincipalId = principalId;
+        this.principalId = principalId;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see java.lang.Object#toString()
-     */
     @Override
     public String toString() {
-        return "Access Control Principal [principalId=" + fPrincipalId + "]" + super.toString();
+        return "Access Control Principal [principalId=" + principalId + "]" + super.toString();
     }
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AllowableActionsImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AllowableActionsImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AllowableActionsImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/AllowableActionsImpl.java Wed Nov 17 09:59:05 2010
@@ -25,20 +25,14 @@ import org.apache.chemistry.opencmis.com
 import org.apache.chemistry.opencmis.commons.enums.Action;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * Allowable Actions.
  */
 public class AllowableActionsImpl extends AbstractExtensionData implements AllowableActions {
 
+    private static final long serialVersionUID = 1L;
+
     private Set<Action> allowableActions = new HashSet<Action>();
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see
-     * org.apache.opencmis.client.provider.AllowableActionsData#getAllowableActions
-     * ()
-     */
     public Set<Action> getAllowableActions() {
         return allowableActions;
     }
@@ -47,11 +41,6 @@ public class AllowableActionsImpl extend
         this.allowableActions = allowableActions;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see java.lang.Object#toString()
-     */
     @Override
     public String toString() {
         return "Allowable Actions [allowable actions=" + allowableActions + "]" + super.toString();

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ChangeEventInfoDataImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ChangeEventInfoDataImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ChangeEventInfoDataImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ChangeEventInfoDataImpl.java Wed Nov 17 09:59:05 2010
@@ -28,6 +28,8 @@ import org.apache.chemistry.opencmis.com
  */
 public class ChangeEventInfoDataImpl extends AbstractExtensionData implements ChangeEventInfo {
 
+    private static final long serialVersionUID = 1L;
+    
     private GregorianCalendar changeTime;
     private ChangeType changeType;
 

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ChoiceImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ChoiceImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ChoiceImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ChoiceImpl.java Wed Nov 17 09:59:05 2010
@@ -23,51 +23,37 @@ import java.util.List;
 import org.apache.chemistry.opencmis.commons.definitions.Choice;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * Choice implementation.
  */
 public class ChoiceImpl<T> extends AbstractExtensionData implements Choice<T> {
 
-    private String fDisplayName;
-    private List<T> fValue;
-    private List<Choice<T>> fChoice;
-
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.Choice#getDisplayName()
-     */
+    private static final long serialVersionUID = 1L;
+
+    private String displayName;
+    private List<T> value;
+    private List<Choice<T>> choice;
+
     public String getDisplayName() {
-        return fDisplayName;
+        return displayName;
     }
 
     public void setDisplayName(String displayName) {
-        fDisplayName = displayName;
+        this.displayName = displayName;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.Choice#getValue()
-     */
     public List<T> getValue() {
-        return fValue;
+        return value;
     }
 
     public void setValue(List<T> value) {
-        fValue = value;
+        this.value = value;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.Choice#getChoice()
-     */
     public List<Choice<T>> getChoice() {
-        return fChoice;
+        return choice;
     }
 
     public void setChoice(List<Choice<T>> choice) {
-        fChoice = choice;
+        this.choice = choice;
     }
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/CmisExtensionElementImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/CmisExtensionElementImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/CmisExtensionElementImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/CmisExtensionElementImpl.java Wed Nov 17 09:59:05 2010
@@ -28,6 +28,8 @@ import org.apache.chemistry.opencmis.com
 
 public class CmisExtensionElementImpl implements CmisExtensionElement {
 
+    private static final long serialVersionUID = 1L;
+
     private String name;
     private String namespace;
     private String value;

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ContentStreamImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ContentStreamImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ContentStreamImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ContentStreamImpl.java Wed Nov 17 09:59:05 2010
@@ -31,10 +31,12 @@ import org.apache.chemistry.opencmis.com
  */
 public class ContentStreamImpl extends AbstractExtensionData implements ContentStream {
 
+    private static final long serialVersionUID = 1L;
+
     private String filename;
     private BigInteger length;
     private String mimeType;
-    private InputStream stream;
+    private transient InputStream stream;
 
     /**
      * Constructor.
@@ -115,7 +117,8 @@ public class ContentStreamImpl extends A
     protected void finalize() throws Throwable {
         try {
             if (stream != null) {
-                // this stream must be closed to release the underlying network resources
+                // this stream must be closed to release the underlying network
+                // resources
                 stream.close();
             }
         } catch (IOException e) {

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ExtensionDataImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ExtensionDataImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ExtensionDataImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ExtensionDataImpl.java Wed Nov 17 09:59:05 2010
@@ -21,9 +21,8 @@ package org.apache.chemistry.opencmis.co
 import org.apache.chemistry.opencmis.commons.data.ExtensionsData;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * ExtensionsData implementation.
  */
 public class ExtensionDataImpl extends AbstractExtensionData implements ExtensionsData {
-
+    private static final long serialVersionUID = 1L;
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/FailedToDeleteDataImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/FailedToDeleteDataImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/FailedToDeleteDataImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/FailedToDeleteDataImpl.java Wed Nov 17 09:59:05 2010
@@ -23,23 +23,19 @@ import java.util.List;
 import org.apache.chemistry.opencmis.commons.data.FailedToDeleteData;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * FailedToDeleteData implementation.
  */
 public class FailedToDeleteDataImpl extends AbstractExtensionData implements FailedToDeleteData {
 
+    private static final long serialVersionUID = 1L;
+
     private List<String> fIds;
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.FailedToDeleteData#getIds()
-     */
     public List<String> getIds() {
         return fIds;
     }
 
     public void setIds(List<String> ids) {
-        fIds = ids;
+        this.fIds = ids;
     }
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectDataImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectDataImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectDataImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectDataImpl.java Wed Nov 17 09:59:05 2010
@@ -32,25 +32,21 @@ import org.apache.chemistry.opencmis.com
 import org.apache.chemistry.opencmis.commons.enums.BaseTypeId;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * ObjectData implementation.
  */
 public class ObjectDataImpl extends AbstractExtensionData implements ObjectData {
 
-    private Properties fProperties;
-    private ChangeEventInfo fChangeEventInfo;
-    private List<ObjectData> fRelationships;
-    private List<RenditionData> fRenditions;
-    private PolicyIdList fPolicyIds;
-    private AllowableActions fAllowableActions;
-    private Acl fAcl;
-    private Boolean fIsExactAcl;
-
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectData#getId()
-     */
+    private static final long serialVersionUID = 1L;
+
+    private Properties properties;
+    private ChangeEventInfo changeEventInfo;
+    private List<ObjectData> relationships;
+    private List<RenditionData> renditions;
+    private PolicyIdList policyIds;
+    private AllowableActions allowableActions;
+    private Acl acl;
+    private Boolean isExactAcl;
+
     public String getId() {
         Object value = getFirstValue(PropertyIds.OBJECT_ID);
         if (value instanceof String) {
@@ -60,11 +56,6 @@ public class ObjectDataImpl extends Abst
         return null;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectData#getBaseTypeId()
-     */
     public BaseTypeId getBaseTypeId() {
         Object value = getFirstValue(PropertyIds.BASE_TYPE_ID);
         if (value instanceof String) {
@@ -77,108 +68,68 @@ public class ObjectDataImpl extends Abst
         return null;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectData#getProperties()
-     */
     public Properties getProperties() {
-        return fProperties;
+        return properties;
     }
 
     public void setProperties(Properties properties) {
-        fProperties = properties;
+        this.properties = properties;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectData#getChangeEventInfo()
-     */
     public ChangeEventInfo getChangeEventInfo() {
-        return fChangeEventInfo;
+        return changeEventInfo;
     }
 
     public void setChangeEventInfo(ChangeEventInfo changeEventInfo) {
-        fChangeEventInfo = changeEventInfo;
+        this.changeEventInfo = changeEventInfo;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectData#getRelationships()
-     */
     public List<ObjectData> getRelationships() {
-        return fRelationships;
+        return relationships;
     }
 
     public void setRelationships(List<ObjectData> relationships) {
-        fRelationships = relationships;
+        this.relationships = relationships;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectData#getRenditions()
-     */
     public List<RenditionData> getRenditions() {
-        return fRenditions;
+        return renditions;
     }
 
     public void setRenditions(List<RenditionData> renditions) {
-        fRenditions = renditions;
+        this.renditions = renditions;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectData#getPolicyIds()
-     */
     public PolicyIdList getPolicyIds() {
-        return fPolicyIds;
+        return policyIds;
     }
 
     public void setPolicyIds(PolicyIdList policyIds) {
-        fPolicyIds = policyIds;
+        this.policyIds = policyIds;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectData#getAllowableActions()
-     */
     public AllowableActions getAllowableActions() {
-        return fAllowableActions;
+        return allowableActions;
     }
 
     public void setAllowableActions(AllowableActions allowableActions) {
-        fAllowableActions = allowableActions;
+        this.allowableActions = allowableActions;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectData#getACL()
-     */
     public Acl getAcl() {
-        return fAcl;
+        return acl;
     }
 
     public void setAcl(Acl acl) {
-        fAcl = acl;
+        this.acl = acl;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectData#isExactACL()
-     */
     public Boolean isExactAcl() {
-        return fIsExactAcl;
+        return isExactAcl;
     }
 
     public void setIsExactAcl(Boolean isExactACL) {
-        fIsExactAcl = isExactACL;
+        this.isExactAcl = isExactACL;
     }
 
     // ---- internal ----
@@ -188,11 +139,11 @@ public class ObjectDataImpl extends Abst
      * property is not set.
      */
     private Object getFirstValue(String id) {
-        if ((fProperties == null) || (fProperties.getProperties() == null)) {
+        if ((properties == null) || (properties.getProperties() == null)) {
             return null;
         }
 
-        PropertyData<?> property = fProperties.getProperties().get(id);
+        PropertyData<?> property = properties.getProperties().get(id);
         if (property == null) {
             return null;
         }
@@ -200,16 +151,11 @@ public class ObjectDataImpl extends Abst
         return property.getFirstValue();
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see java.lang.Object#toString()
-     */
     @Override
     public String toString() {
-        return "Object Data [properties=" + fProperties + ", allowable actions=" + fAllowableActions
-                + ", change event info=" + fChangeEventInfo + ", ACL=" + fAcl + ", is exact ACL=" + fIsExactAcl
-                + ", policy ids=" + fPolicyIds + ", relationships=" + fRelationships + ", renditions=" + fRenditions
+        return "Object Data [properties=" + properties + ", allowable actions=" + allowableActions
+                + ", change event info=" + changeEventInfo + ", ACL=" + acl + ", is exact ACL=" + isExactAcl
+                + ", policy ids=" + policyIds + ", relationships=" + relationships + ", renditions=" + renditions
                 + "]" + super.toString();
     }
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectInFolderContainerImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectInFolderContainerImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectInFolderContainerImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectInFolderContainerImpl.java Wed Nov 17 09:59:05 2010
@@ -24,13 +24,14 @@ import org.apache.chemistry.opencmis.com
 import org.apache.chemistry.opencmis.commons.data.ObjectInFolderData;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * ObjectInFolderContainer implementation.
  */
 public class ObjectInFolderContainerImpl extends AbstractExtensionData implements ObjectInFolderContainer {
 
-    private ObjectInFolderData fObject;
-    private List<ObjectInFolderContainer> fChildren;
+    private static final long serialVersionUID = 1L;
+
+    private ObjectInFolderData object;
+    private List<ObjectInFolderContainer> children;
 
     /**
      * Constructor.
@@ -47,41 +48,24 @@ public class ObjectInFolderContainerImpl
 
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see
-     * org.apache.opencmis.client.provider.ObjectInFolderContainer#getObject()
-     */
     public ObjectInFolderData getObject() {
-        return fObject;
+        return object;
     }
 
     public void setObject(ObjectInFolderData object) {
-        fObject = object;
+        this.object = object;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see
-     * org.apache.opencmis.client.provider.ObjectInFolderContainer#getChildren()
-     */
     public List<ObjectInFolderContainer> getChildren() {
-        return fChildren;
+        return children;
     }
 
     public void setChildren(List<ObjectInFolderContainer> children) {
-        fChildren = children;
+        this.children = children;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see java.lang.Object#toString()
-     */
     @Override
     public String toString() {
-        return "ObjectInFolder Container [object=" + fObject + ", children=" + fChildren + "]";
+        return "ObjectInFolder Container [object=" + object + ", children=" + children + "]";
     }
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectInFolderDataImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectInFolderDataImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectInFolderDataImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectInFolderDataImpl.java Wed Nov 17 09:59:05 2010
@@ -22,13 +22,14 @@ import org.apache.chemistry.opencmis.com
 import org.apache.chemistry.opencmis.commons.data.ObjectInFolderData;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * ObjectInFolderData implementation.
  */
 public class ObjectInFolderDataImpl extends AbstractExtensionData implements ObjectInFolderData {
 
-    private ObjectData fObject;
-    private String fPathSegment;
+    private static final long serialVersionUID = 1L;
+
+    private ObjectData object;
+    private String pathSegment;
 
     /**
      * Constructor.
@@ -43,40 +44,24 @@ public class ObjectInFolderDataImpl exte
         setObject(object);
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectInFolderData#getObject()
-     */
     public ObjectData getObject() {
-        return fObject;
+        return object;
     }
 
     public void setObject(ObjectData object) {
-        fObject = object;
+        this.object = object;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see
-     * org.apache.opencmis.client.provider.ObjectInFolderData#getPathSegment()
-     */
     public String getPathSegment() {
-        return fPathSegment;
+        return pathSegment;
     }
 
     public void setPathSegment(String pathSegment) {
-        fPathSegment = pathSegment;
+        this.pathSegment = pathSegment;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see java.lang.Object#toString()
-     */
     @Override
     public String toString() {
-        return "ObjectInFolder [object=" + fObject + ", path segment=" + fPathSegment + "]" + super.toString();
+        return "ObjectInFolder [object=" + object + ", path segment=" + pathSegment + "]" + super.toString();
     }
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectInFolderListImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectInFolderListImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectInFolderListImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectInFolderListImpl.java Wed Nov 17 09:59:05 2010
@@ -25,62 +25,43 @@ import org.apache.chemistry.opencmis.com
 import org.apache.chemistry.opencmis.commons.data.ObjectInFolderList;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * ObjectInFolderList implementation.
  */
 public class ObjectInFolderListImpl extends AbstractExtensionData implements ObjectInFolderList {
 
-    private List<ObjectInFolderData> fObjects;
-    private Boolean fHasMoreItems = Boolean.FALSE;
-    private BigInteger fNumItems;
-
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectList#getObjects()
-     */
+    private static final long serialVersionUID = 1L;
+
+    private List<ObjectInFolderData> objects;
+    private Boolean hasMoreItems = Boolean.FALSE;
+    private BigInteger numItems;
+
     public List<ObjectInFolderData> getObjects() {
-        return fObjects;
+        return objects;
     }
 
     public void setObjects(List<ObjectInFolderData> objects) {
-        fObjects = objects;
+        this.objects = objects;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectList#hasMore()
-     */
     public Boolean hasMoreItems() {
-        return fHasMoreItems;
+        return hasMoreItems;
     }
 
     public void setHasMoreItems(Boolean hasMoreItems) {
-        fHasMoreItems = hasMoreItems;
+        this.hasMoreItems = hasMoreItems;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectList#getNumItems()
-     */
     public BigInteger getNumItems() {
-        return fNumItems;
+        return numItems;
     }
 
     public void setNumItems(BigInteger numItems) {
-        fNumItems = numItems;
+        this.numItems = numItems;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see java.lang.Object#toString()
-     */
     @Override
     public String toString() {
-        return "ObjectInFolder List [objects=" + fObjects + ", has more items=" + fHasMoreItems + ", num items="
-                + fNumItems + "]" + super.toString();
+        return "ObjectInFolder List [objects=" + objects + ", has more items=" + hasMoreItems + ", num items="
+                + numItems + "]" + super.toString();
     }
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectListImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectListImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectListImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectListImpl.java Wed Nov 17 09:59:05 2010
@@ -25,62 +25,42 @@ import org.apache.chemistry.opencmis.com
 import org.apache.chemistry.opencmis.commons.data.ObjectList;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * ObjectList implementation.
  */
 public class ObjectListImpl extends AbstractExtensionData implements ObjectList {
 
-    private List<ObjectData> fObjects;
-    private Boolean fHasMoreItems = Boolean.FALSE;
-    private BigInteger fNumItems;
-
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectList#getObjects()
-     */
+    private static final long serialVersionUID = 1L;
+
+    private List<ObjectData> objects;
+    private Boolean hasMoreItems = Boolean.FALSE;
+    private BigInteger numItems;
+
     public List<ObjectData> getObjects() {
-        return fObjects;
+        return objects;
     }
 
     public void setObjects(List<ObjectData> objects) {
-        fObjects = objects;
+        this.objects = objects;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectList#hasMoreItems()
-     */
     public Boolean hasMoreItems() {
-        return fHasMoreItems;
+        return hasMoreItems;
     }
 
     public void setHasMoreItems(Boolean hasMoreItems) {
-        fHasMoreItems = hasMoreItems;
+        this.hasMoreItems = hasMoreItems;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectList#getNumItems()
-     */
     public BigInteger getNumItems() {
-        return fNumItems;
+        return numItems;
     }
 
     public void setNumItems(BigInteger numItems) {
-        fNumItems = numItems;
+        this.numItems = numItems;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see java.lang.Object#toString()
-     */
     @Override
     public String toString() {
-        return "Object List [objects=" + fObjects + ", has more items=" + fHasMoreItems + ", num items=" + fNumItems
-                + "]";
+        return "Object List [objects=" + objects + ", has more items=" + hasMoreItems + ", num items=" + numItems + "]";
     }
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectParentDataImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectParentDataImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectParentDataImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/ObjectParentDataImpl.java Wed Nov 17 09:59:05 2010
@@ -22,13 +22,14 @@ import org.apache.chemistry.opencmis.com
 import org.apache.chemistry.opencmis.commons.data.ObjectParentData;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * ObjectParentData implementation.
  */
 public class ObjectParentDataImpl extends AbstractExtensionData implements ObjectParentData {
 
-    private ObjectData fObject;
-    private String fRelativePathSegment;
+    private static final long serialVersionUID = 1L;
+
+    private ObjectData object;
+    private String relativePathSegment;
 
     /**
      * Constructor.
@@ -43,41 +44,25 @@ public class ObjectParentDataImpl extend
         setObject(object);
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.ObjectInFolderData#getObject()
-     */
     public ObjectData getObject() {
-        return fObject;
+        return object;
     }
 
     public void setObject(ObjectData object) {
-        fObject = object;
+        this.object = object;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see
-     * org.apache.opencmis.client.provider.ObjectInFolderData#getPathSegment()
-     */
     public String getRelativePathSegment() {
-        return fRelativePathSegment;
+        return relativePathSegment;
     }
 
     public void setRelativePathSegment(String relativePathSegment) {
-        fRelativePathSegment = relativePathSegment;
+        this.relativePathSegment = relativePathSegment;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see java.lang.Object#toString()
-     */
     @Override
     public String toString() {
-        return "Object Parent [object=" + fObject + ", relative path segment=" + fRelativePathSegment + "]"
+        return "Object Parent [object=" + object + ", relative path segment=" + relativePathSegment + "]"
                 + super.toString();
     }
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PolicyIdListImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PolicyIdListImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PolicyIdListImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PolicyIdListImpl.java Wed Nov 17 09:59:05 2010
@@ -23,18 +23,14 @@ import java.util.List;
 import org.apache.chemistry.opencmis.commons.data.PolicyIdList;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * PolicyIdList implementation.
  */
 public class PolicyIdListImpl extends AbstractExtensionData implements PolicyIdList {
 
+    private static final long serialVersionUID = 1L;
+
     private List<String> fPolicyIds;
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.PolicyIdListData#getPolicyIds()
-     */
     public List<String> getPolicyIds() {
         return fPolicyIds;
     }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertiesImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertiesImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertiesImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertiesImpl.java Wed Nov 17 09:59:05 2010
@@ -34,6 +34,8 @@ import org.apache.chemistry.opencmis.com
  */
 public class PropertiesImpl extends AbstractExtensionData implements Properties {
 
+    private static final long serialVersionUID = 1L;
+
     List<PropertyData<?>> propertyList = new ArrayList<PropertyData<?>>();
     Map<String, PropertyData<?>> properties = new LinkedHashMap<String, PropertyData<?>>();
 

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyBooleanImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyBooleanImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyBooleanImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyBooleanImpl.java Wed Nov 17 09:59:05 2010
@@ -24,12 +24,11 @@ import org.apache.chemistry.opencmis.com
 
 /**
  * Boolean property data implementation.
- * 
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
  */
 public class PropertyBooleanImpl extends AbstractPropertyData<Boolean> implements PropertyBoolean {
 
+    private static final long serialVersionUID = 1L;
+
     public PropertyBooleanImpl() {
     }
 

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyDateTimeImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyDateTimeImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyDateTimeImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyDateTimeImpl.java Wed Nov 17 09:59:05 2010
@@ -25,12 +25,11 @@ import org.apache.chemistry.opencmis.com
 
 /**
  * DateTime property data implementation.
- * 
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
  */
 public class PropertyDateTimeImpl extends AbstractPropertyData<GregorianCalendar> implements PropertyDateTime {
 
+    private static final long serialVersionUID = 1L;
+
     public PropertyDateTimeImpl() {
     }
 

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyDecimalImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyDecimalImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyDecimalImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyDecimalImpl.java Wed Nov 17 09:59:05 2010
@@ -25,12 +25,11 @@ import org.apache.chemistry.opencmis.com
 
 /**
  * Decimal property data implementation.
- * 
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
  */
 public class PropertyDecimalImpl extends AbstractPropertyData<BigDecimal> implements PropertyDecimal {
 
+    private static final long serialVersionUID = 1L;
+
     public PropertyDecimalImpl() {
     }
 

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyHtmlImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyHtmlImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyHtmlImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyHtmlImpl.java Wed Nov 17 09:59:05 2010
@@ -24,12 +24,11 @@ import org.apache.chemistry.opencmis.com
 
 /**
  * Html property data implementation.
- * 
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
  */
 public class PropertyHtmlImpl extends AbstractPropertyData<String> implements PropertyHtml {
 
+    private static final long serialVersionUID = 1L;
+
     public PropertyHtmlImpl() {
     }
 

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyIdImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyIdImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyIdImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyIdImpl.java Wed Nov 17 09:59:05 2010
@@ -24,12 +24,11 @@ import org.apache.chemistry.opencmis.com
 
 /**
  * Id property data implementation.
- * 
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
  */
 public class PropertyIdImpl extends AbstractPropertyData<String> implements PropertyId {
 
+    private static final long serialVersionUID = 1L;
+
     public PropertyIdImpl() {
     }
 

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyIntegerImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyIntegerImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyIntegerImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyIntegerImpl.java Wed Nov 17 09:59:05 2010
@@ -25,12 +25,11 @@ import org.apache.chemistry.opencmis.com
 
 /**
  * Integer property data implementation.
- * 
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
  */
 public class PropertyIntegerImpl extends AbstractPropertyData<BigInteger> implements PropertyInteger {
 
+    private static final long serialVersionUID = 1L;
+
     public PropertyIntegerImpl() {
     }
 

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyStringImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyStringImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyStringImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyStringImpl.java Wed Nov 17 09:59:05 2010
@@ -24,12 +24,11 @@ import org.apache.chemistry.opencmis.com
 
 /**
  * String property data implementation.
- * 
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
  */
 public class PropertyStringImpl extends AbstractPropertyData<String> implements PropertyString {
 
+    private static final long serialVersionUID = 1L;
+
     public PropertyStringImpl() {
     }
 

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyUriImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyUriImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyUriImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/PropertyUriImpl.java Wed Nov 17 09:59:05 2010
@@ -24,12 +24,11 @@ import org.apache.chemistry.opencmis.com
 
 /**
  * Uri property data implementation.
- * 
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
  */
 public class PropertyUriImpl extends AbstractPropertyData<String> implements PropertyUri {
 
+    private static final long serialVersionUID = 1L;
+
     public PropertyUriImpl() {
     }
 

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/RenditionDataImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/RenditionDataImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/RenditionDataImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/RenditionDataImpl.java Wed Nov 17 09:59:05 2010
@@ -23,19 +23,20 @@ import java.math.BigInteger;
 import org.apache.chemistry.opencmis.commons.data.RenditionData;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * RenditionData implementation.
  */
 public class RenditionDataImpl extends AbstractExtensionData implements RenditionData {
 
-    protected String fStreamId;
-    private String fMimeType;
-    protected BigInteger fLength;
-    private String fKind;
-    private String fTitle;
-    protected BigInteger fWidth;
-    protected BigInteger fHeight;
-    protected String fRenditionDocumentId;
+    private static final long serialVersionUID = 1L;
+
+    protected String streamId;
+    private String mimeType;
+    protected BigInteger length;
+    private String kind;
+    private String title;
+    protected BigInteger width;
+    protected BigInteger height;
+    protected String renditionDocumentId;
 
     public RenditionDataImpl() {
     }
@@ -52,122 +53,75 @@ public class RenditionDataImpl extends A
         setRenditionDocumentId(renditionDocumentId);
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.RenditionData#getStreamId()
-     */
     public String getStreamId() {
-        return fStreamId;
+        return streamId;
     }
 
     public void setStreamId(String streamId) {
-        fStreamId = streamId;
+        this.streamId = streamId;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.RenditionData#getMimeType()
-     */
     public String getMimeType() {
-        return fMimeType;
+        return mimeType;
     }
 
     public void setMimeType(String mimeType) {
-        fMimeType = mimeType;
+        this.mimeType = mimeType;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.RenditionData#getLength()
-     */
     public BigInteger getBigLength() {
-        return fLength;
+        return length;
     }
 
     public void setBigLength(BigInteger length) {
-        fLength = length;
+        this.length = length;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.RenditionData#getKind()
-     */
     public String getKind() {
-        return fKind;
+        return kind;
     }
 
     public void setKind(String kind) {
-        fKind = kind;
+        this.kind = kind;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.RenditionData#getTitle()
-     */
     public String getTitle() {
-        return fTitle;
+        return title;
     }
 
     public void setTitle(String title) {
-        fTitle = title;
+        this.title = title;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.RenditionData#getHeight()
-     */
     public BigInteger getBigHeight() {
-        return fHeight;
+        return height;
     }
 
     public void setBigHeight(BigInteger height) {
-        fHeight = height;
+        this.height = height;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.apache.opencmis.client.provider.RenditionData#getWidth()
-     */
     public BigInteger getBigWidth() {
-        return fWidth;
+        return width;
     }
 
     public void setBigWidth(BigInteger width) {
-        fWidth = width;
+        this.width = width;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see
-     * org.apache.opencmis.client.provider.RenditionData#getRenditionDocumentId
-     * ()
-     */
     public String getRenditionDocumentId() {
-        return fRenditionDocumentId;
+        return renditionDocumentId;
     }
 
     public void setRenditionDocumentId(String renditionDocumentId) {
-        fRenditionDocumentId = renditionDocumentId;
+        this.renditionDocumentId = renditionDocumentId;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see java.lang.Object#toString()
-     */
     @Override
     public String toString() {
-        return "RenditionDataImpl [, kind=" + fKind + ", title=" + fTitle + ", MIME type=" + fMimeType + ", length="
-                + fLength + ", rendition document id=" + fRenditionDocumentId + ", stream id=" + fStreamId + " height="
-                + fHeight + ", width=" + fWidth + "]" + super.toString();
+        return "RenditionDataImpl [, kind=" + kind + ", title=" + title + ", MIME type=" + mimeType + ", length="
+                + length + ", rendition document id=" + renditionDocumentId + ", stream id=" + streamId + " height="
+                + height + ", width=" + width + "]" + super.toString();
     }
 
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/TypeDefinitionContainerImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/TypeDefinitionContainerImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/TypeDefinitionContainerImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/TypeDefinitionContainerImpl.java Wed Nov 17 09:59:05 2010
@@ -25,58 +25,41 @@ import org.apache.chemistry.opencmis.com
 import org.apache.chemistry.opencmis.commons.definitions.TypeDefinitionContainer;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
- * 
+ * TypeDefinitionContainer implementation.
  */
 public class TypeDefinitionContainerImpl extends AbstractExtensionData implements TypeDefinitionContainer {
 
-    private TypeDefinition fType;
-    private List<TypeDefinitionContainer> fChildren;
+    private static final long serialVersionUID = 1L;
+
+    private TypeDefinition type;
+    private List<TypeDefinitionContainer> children;
 
     public TypeDefinitionContainerImpl() {
     }
 
     public TypeDefinitionContainerImpl(TypeDefinition typeDef) {
         setTypeDefinition(typeDef);
-        fChildren = new ArrayList<TypeDefinitionContainer>();
+        children = new ArrayList<TypeDefinitionContainer>();
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see
-     * org.apache.opencmis.client.provider.TypeDefinitionContainer#getTypeDefinition
-     * ()
-     */
     public TypeDefinition getTypeDefinition() {
-        return fType;
+        return type;
     }
 
     public void setTypeDefinition(TypeDefinition type) {
-        fType = type;
+        this.type = type;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see
-     * org.apache.opencmis.client.provider.TypeDefinitionContainer#getChildren()
-     */
     public List<TypeDefinitionContainer> getChildren() {
-        return fChildren;
+        return children;
     }
 
     public void setChildren(List<TypeDefinitionContainer> children) {
-        fChildren = children;
+        this.children = children;
     }
 
-    /*
-     * (non-Javadoc)
-     * 
-     * @see java.lang.Object#toString()
-     */
     @Override
     public String toString() {
-        return "Type Definition Container [type=" + fType + " ,children=" + fChildren + "]" + super.toString();
+        return "Type Definition Container [type=" + type + " ,children=" + children + "]" + super.toString();
     }
 }

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/TypeDefinitionListImpl.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/TypeDefinitionListImpl.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/TypeDefinitionListImpl.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/dataobjects/TypeDefinitionListImpl.java Wed Nov 17 09:59:05 2010
@@ -25,10 +25,12 @@ import org.apache.chemistry.opencmis.com
 import org.apache.chemistry.opencmis.commons.definitions.TypeDefinitionList;
 
 /**
- * @author <a href="mailto:fmueller@opentext.com">Florian M&uuml;ller</a>
+ * TypeDefinitionList implementation.
  */
 public class TypeDefinitionListImpl extends AbstractExtensionData implements TypeDefinitionList {
 
+    private static final long serialVersionUID = 1L;
+    
     private List<TypeDefinition> fList;
     private Boolean fHasMoreItems = Boolean.FALSE;
     private BigInteger fNumItems;
@@ -41,8 +43,9 @@ public class TypeDefinitionListImpl exte
 
     /**
      * Constructor from a list.
-     *
-     * @param list the initial list
+     * 
+     * @param list
+     *            the initial list
      */
     public TypeDefinitionListImpl(List<TypeDefinition> list) {
         fList = list;

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/AbstractCmisService.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/AbstractCmisService.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/AbstractCmisService.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/AbstractCmisService.java Wed Nov 17 09:59:05 2010
@@ -1,7 +1,4 @@
-package org.apache.chemistry.opencmis.commons.impl.server;
-
 /*
- *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -10,7 +7,7 @@ package org.apache.chemistry.opencmis.co
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
  *
- *   http://www.apache.org/licenses/LICENSE-2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
@@ -18,8 +15,8 @@ package org.apache.chemistry.opencmis.co
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- *
  */
+package org.apache.chemistry.opencmis.commons.impl.server;
 
 import java.math.BigInteger;
 import java.util.ArrayList;
@@ -78,7 +75,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -108,7 +105,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -120,7 +117,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -133,7 +130,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -148,7 +145,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -162,7 +159,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -177,7 +174,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -194,7 +191,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -211,7 +208,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -226,7 +223,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -241,7 +238,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -260,7 +257,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -312,7 +309,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -328,7 +325,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -344,7 +341,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -359,7 +356,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -375,7 +372,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -390,7 +387,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -404,7 +401,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -419,7 +416,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -433,7 +430,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -448,7 +445,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -465,7 +462,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -480,7 +477,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -496,7 +493,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -512,7 +509,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -526,7 +523,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -541,7 +538,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -556,7 +553,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -571,7 +568,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -588,7 +585,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -604,7 +601,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -618,7 +615,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -635,7 +632,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -652,7 +649,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -667,7 +664,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -685,7 +682,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -701,7 +698,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -719,7 +716,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -735,7 +732,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -752,7 +749,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -772,7 +769,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -787,7 +784,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -801,7 +798,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -817,7 +814,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -832,7 +829,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -848,7 +845,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -875,7 +872,7 @@ public abstract class AbstractCmisServic
 
     /**
      * {@inheritDoc}
-     *
+     * 
      * <p>
      * <b>Implementation Hints:</b>
      * <ul>
@@ -917,9 +914,11 @@ public abstract class AbstractCmisServic
 
     /**
      * Gets the {@link ObjectInfo} about an object, checking the cache first.
-     *
-     * @param repositoryId the repository id
-     * @param object the object
+     * 
+     * @param repositoryId
+     *            the repository id
+     * @param object
+     *            the object
      * @return the object info
      */
     protected ObjectInfo getObjectInfo(String repositoryId, ObjectData object) {
@@ -950,9 +949,11 @@ public abstract class AbstractCmisServic
 
     /**
      * Collects the {@link ObjectInfo} about an object.
-     *
-     * @param repositoryId the repository id
-     * @param object the object
+     * 
+     * @param repositoryId
+     *            the repository id
+     * @param object
+     *            the object
      * @return the collected object info
      */
     protected ObjectInfo getObjectInfoIntern(String repositoryId, ObjectData object) {

Modified: incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/AbstractServiceFactory.java
URL: http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/AbstractServiceFactory.java?rev=1035966&r1=1035965&r2=1035966&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/AbstractServiceFactory.java (original)
+++ incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-impl/src/main/java/org/apache/chemistry/opencmis/commons/impl/server/AbstractServiceFactory.java Wed Nov 17 09:59:05 2010
@@ -1,6 +1,4 @@
-package org.apache.chemistry.opencmis.commons.impl.server;
 /*
- *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -9,7 +7,7 @@ package org.apache.chemistry.opencmis.co
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
  *
- *   http://www.apache.org/licenses/LICENSE-2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
@@ -17,9 +15,8 @@ package org.apache.chemistry.opencmis.co
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- *
  */
-
+package org.apache.chemistry.opencmis.commons.impl.server;
 
 import java.util.Map;