MOB-378 (AtomPub binding) Support for sub-types (and properties)

- 1st pass at creation of document / folder sub-types
- 1st pass at setting / updating custom properties
- Existing AtomPub CMIS Tests passing

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13707 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2009-03-22 15:23:53 +00:00
parent 3f78bf9b32
commit 384f4abdf9
25 changed files with 417 additions and 272 deletions

View File

@@ -24,6 +24,9 @@
*/
package org.alfresco.cmis.property;
import org.alfresco.cmis.dictionary.CMISMapping;
import org.alfresco.service.ServiceRegistry;
/**
* Base class for generic property accessors
@@ -34,5 +37,9 @@ package org.alfresco.cmis.property;
public abstract class AbstractGenericPropertyAccessor extends AbstractPropertyAccessor implements GenericPropertyAccessor
{
protected AbstractGenericPropertyAccessor(CMISMapping cmisMapping, ServiceRegistry serviceRegistry)
{
super(cmisMapping, serviceRegistry);
}
}