Merged V2.2 to HEAD (QNames)

7624: QName Refactor Merge 1 of 9
   7625: QName Refactor Merge 2 of 9
   7626: QName Refactor Merge 3 of 9
   7627: QName Refactor Merge 4 of 9
   7628: QName Refactor Merge 5 of 9


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@8436 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2008-03-06 18:12:25 +00:00
parent a49bfd311d
commit 00e81c0d66
52 changed files with 2851 additions and 698 deletions

View File

@@ -24,7 +24,7 @@
package org.alfresco.repo.avm;
import org.alfresco.repo.domain.PropertyValue;
import org.alfresco.service.namespace.QName;
import org.alfresco.repo.domain.QNameEntity;
/**
* Arbitrary properties associated with AVMStores.
@@ -46,15 +46,15 @@ public interface AVMStoreProperty
/**
* Set the name of the property.
* @param name The QName for the property.
* @param qnameEntity The QNameEntity for the property.
*/
public void setName(QName name);
public void setName(QNameEntity qnameEntity);
/**
* Get the name of this property.
* @return The QName of this property.
* @return The QNameEntity of this property.
*/
public QName getName();
public QNameEntity getName();
/**
* Set the actual property value.