mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Removed javadoc warnings from avm dir.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3379 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -129,7 +129,7 @@ public class AVMContext
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param aVMStore the fAVMStoreDAO to set
|
* @param aVMStoreDAO The fAVMStoreDAO to set
|
||||||
*/
|
*/
|
||||||
public void setAvmStoreDAO(AVMStoreDAO aVMStoreDAO)
|
public void setAvmStoreDAO(AVMStoreDAO aVMStoreDAO)
|
||||||
{
|
{
|
||||||
|
@@ -39,7 +39,7 @@ public interface AVMNodePropertyDAO
|
|||||||
* @param name The QName.
|
* @param name The QName.
|
||||||
* @return The found AVMNodeProperty or null if not found.
|
* @return The found AVMNodeProperty or null if not found.
|
||||||
*/
|
*/
|
||||||
public AVMNodeProperty get(AVMNode node, QName name);
|
public AVMNodeProperty get(AVMNode owner, QName name);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a List of all properties for an owning node.
|
* Get a List of all properties for an owning node.
|
||||||
|
@@ -108,19 +108,19 @@ public interface AVMService
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new layered file.
|
* Create a new layered file.
|
||||||
* @param srcPath The simple absolute path that the new file will point at.
|
* @param targetPath The simple absolute path that the new file will point at.
|
||||||
* @param parent The simple absolute path to the parent.
|
* @param parent The simple absolute path to the parent.
|
||||||
* @param name The name to give the new file.
|
* @param name The name to give the new file.
|
||||||
*/
|
*/
|
||||||
public void createLayeredFile(String srcPath, String parent, String name);
|
public void createLayeredFile(String targetPath, String parent, String name);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new layered directory.
|
* Create a new layered directory.
|
||||||
* @param srcPath The simple absolute path that the new folder will point at.
|
* @param targetPath The simple absolute path that the new folder will point at.
|
||||||
* @param parent The simple absolute path to the parent.
|
* @param parent The simple absolute path to the parent.
|
||||||
* @param name The name to give the new folder.
|
* @param name The name to give the new folder.
|
||||||
*/
|
*/
|
||||||
public void createLayeredDirectory(String srcPath, String parent, String name);
|
public void createLayeredDirectory(String targetPath, String parent, String name);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retarget a layered directory.
|
* Retarget a layered directory.
|
||||||
@@ -183,7 +183,7 @@ public interface AVMService
|
|||||||
* deleted, or modified since the last time this function was called, is marked
|
* deleted, or modified since the last time this function was called, is marked
|
||||||
* as needing to be copied, so that further modifications will trigger copy on write
|
* as needing to be copied, so that further modifications will trigger copy on write
|
||||||
* semantics.
|
* semantics.
|
||||||
* @param stores The names of the AVMStores to snapshot.
|
* @param repositories The names of the AVMStores to snapshot.
|
||||||
*/
|
*/
|
||||||
public List<Integer> createSnapshot(List<String> repositories);
|
public List<Integer> createSnapshot(List<String> repositories);
|
||||||
|
|
||||||
|
@@ -64,7 +64,7 @@ public interface VersionRootDAO
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the highest numbered version in a store.
|
* Get the highest numbered version in a store.
|
||||||
* @param stor The store.
|
* @param store The store.
|
||||||
* @return The highest numbered version.
|
* @return The highest numbered version.
|
||||||
*/
|
*/
|
||||||
public VersionRoot getMaxVersion(AVMStore store);
|
public VersionRoot getMaxVersion(AVMStore store);
|
||||||
|
Reference in New Issue
Block a user