Merged HEAD-BUG-FIX (5.1/Cloud) to HEAD (5.1/Cloud)

103437: Clean up empty Javadoc tags


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@103621 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Alan Davis
2015-05-02 07:43:49 +00:00
parent efbc3648d0
commit 93ba7015d1

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2005-2010 Alfresco Software Limited. * Copyright (C) 2005-2015 Alfresco Software Limited.
* *
* This file is part of Alfresco * This file is part of Alfresco
* *
@@ -33,6 +33,7 @@ import org.springframework.dao.DataIntegrityViolationException;
* DAO services for <b>alf_content_data</b> table * DAO services for <b>alf_content_data</b> table
* *
* @author Derek Hulley * @author Derek Hulley
* @author Steven Glover
* @since 3.2 * @since 3.2
*/ */
public interface ContentDataDAO public interface ContentDataDAO
@@ -133,8 +134,6 @@ public interface ContentDataDAO
* Get a content url entity by contentUrl * Get a content url entity by contentUrl
* *
* @since 5.0 * @since 5.0
* @param contentUrl
* @return
*/ */
ContentUrlEntity getContentUrl(String contentUrl); ContentUrlEntity getContentUrl(String contentUrl);
@@ -142,8 +141,6 @@ public interface ContentDataDAO
* Get a content url entity by contentUrlId * Get a content url entity by contentUrlId
* *
* @since 5.0 * @since 5.0
* @param contentUrlId
* @return
*/ */
ContentUrlEntity getContentUrl(Long contentUrlId); ContentUrlEntity getContentUrl(Long contentUrlId);
@@ -151,8 +148,6 @@ public interface ContentDataDAO
* Update a content url * Update a content url
* *
* @since 5.0 * @since 5.0
* @param contentUrlEntity
* @return
*/ */
void updateContentUrl(ContentUrlEntity contentUrlEntity); void updateContentUrl(ContentUrlEntity contentUrlEntity);
@@ -160,8 +155,6 @@ public interface ContentDataDAO
* Updates the content key for the given content url * Updates the content key for the given content url
* *
* @since 5.0 * @since 5.0
* @param contentUrl
* @param contentUrlKeyEntity
*/ */
boolean updateContentUrlKey(String contentUrl, ContentUrlKeyEntity contentUrlKeyEntity); boolean updateContentUrlKey(String contentUrl, ContentUrlKeyEntity contentUrlKeyEntity);
@@ -169,8 +162,6 @@ public interface ContentDataDAO
* Updates the content key for the given content url * Updates the content key for the given content url
* *
* @since 5.0 * @since 5.0
* @param contentUrlId
* @param contentUrlKey url key
*/ */
boolean updateContentUrlKey(long contentUrlId, ContentUrlKeyEntity contentUrlKey); boolean updateContentUrlKey(long contentUrlId, ContentUrlKeyEntity contentUrlKey);
@@ -182,7 +173,6 @@ public interface ContentDataDAO
* @param masterKeyAlias master key alias * @param masterKeyAlias master key alias
* @param fromId id * @param fromId id
* @param maxResults max results * @param maxResults max results
* @return
*/ */
List<ContentUrlKeyEntity> getSymmetricKeysByMasterKeyAlias(String masterKeyAlias, long fromId, int maxResults); List<ContentUrlKeyEntity> getSymmetricKeysByMasterKeyAlias(String masterKeyAlias, long fromId, int maxResults);
@@ -190,7 +180,6 @@ public interface ContentDataDAO
* Count symmetric keys entities for symmetric keys for all master keys * Count symmetric keys entities for symmetric keys for all master keys
* *
* @since 5.0 * @since 5.0
* @return
*/ */
Map<String, Integer> countSymmetricKeysForMasterKeys(); Map<String, Integer> countSymmetricKeysForMasterKeys();
@@ -199,8 +188,6 @@ public interface ContentDataDAO
* master key * master key
* *
* @since 5.0 * @since 5.0
* @param masterKeyAlias
* @return
*/ */
int countSymmetricKeysForMasterKeyAlias(String masterKeyAlias); int countSymmetricKeysForMasterKeyAlias(String masterKeyAlias);
} }