mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merge from SEAMIST3
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10730 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -24,6 +24,7 @@
|
||||
*/
|
||||
package org.alfresco.cmis.property;
|
||||
|
||||
import org.alfresco.cmis.dictionary.CMISMapping;
|
||||
import org.alfresco.service.ServiceRegistry;
|
||||
|
||||
/**
|
||||
@@ -34,8 +35,17 @@ import org.alfresco.service.ServiceRegistry;
|
||||
*/
|
||||
public abstract class AbstractPropertyAccessor
|
||||
{
|
||||
private CMISMapping cmisMapping;
|
||||
private ServiceRegistry serviceRegistry;
|
||||
|
||||
/**
|
||||
* @param cmisMapping
|
||||
*/
|
||||
public void setCMISMapping(CMISMapping cmisMapping)
|
||||
{
|
||||
this.cmisMapping = cmisMapping;
|
||||
}
|
||||
|
||||
public void setServiceRegistry(ServiceRegistry serviceRegistry)
|
||||
{
|
||||
this.serviceRegistry = serviceRegistry;
|
||||
@@ -46,4 +56,9 @@ public abstract class AbstractPropertyAccessor
|
||||
return serviceRegistry;
|
||||
}
|
||||
|
||||
public CMISMapping getCMISMapping()
|
||||
{
|
||||
return cmisMapping;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user