diff --git a/source/java/org/alfresco/filesys/AbstractServerConfigurationBean.java b/source/java/org/alfresco/filesys/AbstractServerConfigurationBean.java index 8c789a73a2..434e112cbc 100644 --- a/source/java/org/alfresco/filesys/AbstractServerConfigurationBean.java +++ b/source/java/org/alfresco/filesys/AbstractServerConfigurationBean.java @@ -537,7 +537,6 @@ public abstract class AbstractServerConfigurationBean extends ServerConfiguratio * Parse the platforms attribute returning the set of platform ids * * @param platformStr String - * @return EnumSet */ protected final EnumSet parsePlatformString(String platformStr) { diff --git a/source/java/org/alfresco/filesys/alfresco/DesktopActionTable.java b/source/java/org/alfresco/filesys/alfresco/DesktopActionTable.java index d69240132c..825b997f0e 100644 --- a/source/java/org/alfresco/filesys/alfresco/DesktopActionTable.java +++ b/source/java/org/alfresco/filesys/alfresco/DesktopActionTable.java @@ -104,7 +104,6 @@ public class DesktopActionTable { /** * Enumerate the action names * - * @return Enumeration */ public final Enumeration enumerateActionNames() { diff --git a/source/java/org/alfresco/filesys/alfresco/DesktopResponse.java b/source/java/org/alfresco/filesys/alfresco/DesktopResponse.java index 1feaaf51e5..1cffbcc649 100644 --- a/source/java/org/alfresco/filesys/alfresco/DesktopResponse.java +++ b/source/java/org/alfresco/filesys/alfresco/DesktopResponse.java @@ -149,7 +149,6 @@ public class DesktopResponse extends ScriptableObject { /** * Get the response value list * - * @return List */ public final List getResponseValues() { diff --git a/source/java/org/alfresco/filesys/repo/NodeMonitor.java b/source/java/org/alfresco/filesys/repo/NodeMonitor.java index 427d4a5564..f98a14f50d 100644 --- a/source/java/org/alfresco/filesys/repo/NodeMonitor.java +++ b/source/java/org/alfresco/filesys/repo/NodeMonitor.java @@ -263,8 +263,6 @@ public class NodeMonitor extends TransactionListenerAdapter * Update properties event * * @param nodeRef NodeRef - * @param before Map - * @param after Map */ public void onUpdateProperties( NodeRef nodeRef, Map before, Map after) { diff --git a/source/java/org/alfresco/opencmis/CMISConnector.java b/source/java/org/alfresco/opencmis/CMISConnector.java index 218edc458f..e28f5fc58b 100644 --- a/source/java/org/alfresco/opencmis/CMISConnector.java +++ b/source/java/org/alfresco/opencmis/CMISConnector.java @@ -941,7 +941,6 @@ public class CMISConnector implements ApplicationContextAware, ApplicationListen * Asynchronously generates thumbnails for the given node. * * @param nodeRef NodeRef - * @param thumbnailNames Set */ public void createThumbnails(NodeRef nodeRef, Set thumbnailNames) { diff --git a/source/java/org/alfresco/repo/action/ActionConditionImpl.java b/source/java/org/alfresco/repo/action/ActionConditionImpl.java index 55c52d39ef..1e635aeec7 100644 --- a/source/java/org/alfresco/repo/action/ActionConditionImpl.java +++ b/source/java/org/alfresco/repo/action/ActionConditionImpl.java @@ -64,7 +64,6 @@ public class ActionConditionImpl extends ParameterizedItemImpl implements Serial * * @param id String * @param actionConditionDefinitionName String - * @param parameterValues Map */ public ActionConditionImpl( String id, diff --git a/source/java/org/alfresco/repo/action/ActionServiceImpl.java b/source/java/org/alfresco/repo/action/ActionServiceImpl.java index a1075bf6f8..41183bedab 100644 --- a/source/java/org/alfresco/repo/action/ActionServiceImpl.java +++ b/source/java/org/alfresco/repo/action/ActionServiceImpl.java @@ -226,7 +226,7 @@ public class ActionServiceImpl implements ActionService, RuntimeActionService, A * * @param asynchronousActionExecutionQueues the asynchronous action execution * queues - * @deprecated Rather than inject a Map, it is + * @deprecated Rather than inject a map, it is * preferable to inject individual {@link AsynchronousActionExecutionQueue} instances * during bean initialisation in a spring init-method. */ diff --git a/source/java/org/alfresco/repo/action/AsynchronousActionExecutionQueue.java b/source/java/org/alfresco/repo/action/AsynchronousActionExecutionQueue.java index 8c074f01b1..3d8411bb7b 100644 --- a/source/java/org/alfresco/repo/action/AsynchronousActionExecutionQueue.java +++ b/source/java/org/alfresco/repo/action/AsynchronousActionExecutionQueue.java @@ -42,7 +42,6 @@ public interface AsynchronousActionExecutionQueue * @param action Action * @param actionedUponNodeRef NodeRef * @param checkConditions boolean - * @param actionChain Set */ void executeAction( RuntimeActionService actionService, diff --git a/source/java/org/alfresco/repo/action/CompositeActionImpl.java b/source/java/org/alfresco/repo/action/CompositeActionImpl.java index d0eacca892..b8c5fcde89 100644 --- a/source/java/org/alfresco/repo/action/CompositeActionImpl.java +++ b/source/java/org/alfresco/repo/action/CompositeActionImpl.java @@ -89,7 +89,6 @@ public class CompositeActionImpl extends ActionImpl implements CompositeAction } /** - * @return List * @see org.alfresco.service.cmr.action.ActionList#getActions() */ public List getActions() diff --git a/source/java/org/alfresco/repo/action/scheduled/CompensatingActionException.java b/source/java/org/alfresco/repo/action/scheduled/CompensatingActionException.java index 50bfd2a192..658032521c 100644 --- a/source/java/org/alfresco/repo/action/scheduled/CompensatingActionException.java +++ b/source/java/org/alfresco/repo/action/scheduled/CompensatingActionException.java @@ -62,7 +62,6 @@ public class CompensatingActionException extends AlfrescoRuntimeException * * @param msgId String * @param cause Throwable - * @param compensatingActions List> */ public CompensatingActionException(String msgId, Throwable cause, List> compensatingActions) { diff --git a/source/java/org/alfresco/repo/action/scheduled/CompositeTemplateActionDefinition.java b/source/java/org/alfresco/repo/action/scheduled/CompositeTemplateActionDefinition.java index 858b8cbc12..6abe4c6424 100644 --- a/source/java/org/alfresco/repo/action/scheduled/CompositeTemplateActionDefinition.java +++ b/source/java/org/alfresco/repo/action/scheduled/CompositeTemplateActionDefinition.java @@ -56,7 +56,6 @@ public class CompositeTemplateActionDefinition extends AbstractTemplateActionDef /** * Set the action templates - IOC. * - * @param templateActionDefinitions List */ public void setTemplateActionDefinitions(List templateActionDefinitions) { diff --git a/source/java/org/alfresco/repo/action/scheduled/SimpleTemplateActionDefinition.java b/source/java/org/alfresco/repo/action/scheduled/SimpleTemplateActionDefinition.java index f2f9000034..6639b144ac 100644 --- a/source/java/org/alfresco/repo/action/scheduled/SimpleTemplateActionDefinition.java +++ b/source/java/org/alfresco/repo/action/scheduled/SimpleTemplateActionDefinition.java @@ -151,7 +151,6 @@ public class SimpleTemplateActionDefinition extends AbstractTemplateActionDefini * Set the map of parameters used by the template. * These are processed via the template service to produce the actual poarameters. * - * @param parameterTemplates Map */ public void setParameterTemplates(Map parameterTemplates) { diff --git a/source/java/org/alfresco/repo/activities/ActivityServiceImpl.java b/source/java/org/alfresco/repo/activities/ActivityServiceImpl.java index 0493287566..a8cd010b7f 100644 --- a/source/java/org/alfresco/repo/activities/ActivityServiceImpl.java +++ b/source/java/org/alfresco/repo/activities/ActivityServiceImpl.java @@ -312,7 +312,6 @@ public class ActivityServiceImpl implements ActivityService, InitializingBean * A cache should be passed in from which to retrieve previously fetched {@link NodeRef}s for efficiency. * * @param activityFeed ActivityFeedEntity - * @param userIdToAvatarNodeRefCache Map * @return NodeRef */ protected NodeRef getUserAvatarNodeRef(ActivityFeedEntity activityFeed, Map userIdToAvatarNodeRefCache) diff --git a/source/java/org/alfresco/repo/admin/patch/impl/GenericWorkflowPatch.java b/source/java/org/alfresco/repo/admin/patch/impl/GenericWorkflowPatch.java index 49452e6cf2..97ebd4cef1 100644 --- a/source/java/org/alfresco/repo/admin/patch/impl/GenericWorkflowPatch.java +++ b/source/java/org/alfresco/repo/admin/patch/impl/GenericWorkflowPatch.java @@ -68,7 +68,6 @@ public class GenericWorkflowPatch extends AbstractPatch implements ApplicationCo /** * Sets the Workflow Definitions * - * @param workflowDefinitions List */ public void setWorkflowDefinitions(List workflowDefinitions) { diff --git a/source/java/org/alfresco/repo/audit/AuditComponent.java b/source/java/org/alfresco/repo/audit/AuditComponent.java index 3e79890de9..10df191741 100644 --- a/source/java/org/alfresco/repo/audit/AuditComponent.java +++ b/source/java/org/alfresco/repo/audit/AuditComponent.java @@ -221,7 +221,7 @@ public interface AuditComponent * '/' ({@link AuditApplication#AUDIT_PATH_SEPARATOR}) * @param values the values to audit mapped by {@link AuditPath} key relative to root path * (may be null) - * @param useUserFilter if false the user filter is disabled. + * @param useUserFilter if false the user filter is disabled. * @return Returns the values that were actually persisted, keyed by their full path. * @throws IllegalStateException if the transaction state could not be determined */ diff --git a/source/java/org/alfresco/repo/audit/PropertyAuditFilter.java b/source/java/org/alfresco/repo/audit/PropertyAuditFilter.java index 9e2b31b78d..09dd122f1f 100644 --- a/source/java/org/alfresco/repo/audit/PropertyAuditFilter.java +++ b/source/java/org/alfresco/repo/audit/PropertyAuditFilter.java @@ -143,7 +143,6 @@ public class PropertyAuditFilter implements AuditFilter /** * @param rootPath String - * @param auditMap Map * @return boolean */ @Override diff --git a/source/java/org/alfresco/repo/audit/generator/AbstractDataGenerator.java b/source/java/org/alfresco/repo/audit/generator/AbstractDataGenerator.java index 6851a3a3cb..aef11ada74 100644 --- a/source/java/org/alfresco/repo/audit/generator/AbstractDataGenerator.java +++ b/source/java/org/alfresco/repo/audit/generator/AbstractDataGenerator.java @@ -59,7 +59,6 @@ public abstract class AbstractDataGenerator implements DataGenerator, Initializi /** * Set the registry with which to register - * @param registry NamedObjectRegistry */ public void setRegistry(NamedObjectRegistry registry) { diff --git a/source/java/org/alfresco/repo/audit/model/AuditApplication.java b/source/java/org/alfresco/repo/audit/model/AuditApplication.java index 2f9af8f504..9d5a66370b 100644 --- a/source/java/org/alfresco/repo/audit/model/AuditApplication.java +++ b/source/java/org/alfresco/repo/audit/model/AuditApplication.java @@ -163,7 +163,7 @@ public class AuditApplication /** * Get the property representing the set of disabled paths for the application * - * @return Returns an ID Set of disabled paths + * @return Returns an ID of disabled paths */ public Long getDisabledPathsId() { diff --git a/source/java/org/alfresco/repo/blog/BlogIntegrationService.java b/source/java/org/alfresco/repo/blog/BlogIntegrationService.java index 78670ff0d8..8aca44a039 100644 --- a/source/java/org/alfresco/repo/blog/BlogIntegrationService.java +++ b/source/java/org/alfresco/repo/blog/BlogIntegrationService.java @@ -56,7 +56,7 @@ public interface BlogIntegrationService /** * Get a list of the registered integration implementations. * - * @return List list of registered blog integration implementations + * @return list of registered blog integration implementations */ List getBlogIntegrationImplementations(); @@ -67,7 +67,7 @@ public interface BlogIntegrationService * a list, with the 'nearest' first. * * @param nodeRef the node reference - * @return List list of the blog details found 'in scope' for the node, empty if none found + * @return list of the blog details found 'in scope' for the node, empty if none found */ List getBlogDetails(NodeRef nodeRef); diff --git a/source/java/org/alfresco/repo/blog/DefaultBlogIntegrationImplementation.java b/source/java/org/alfresco/repo/blog/DefaultBlogIntegrationImplementation.java index 0713b1f9a6..32c645144b 100644 --- a/source/java/org/alfresco/repo/blog/DefaultBlogIntegrationImplementation.java +++ b/source/java/org/alfresco/repo/blog/DefaultBlogIntegrationImplementation.java @@ -181,7 +181,6 @@ public abstract class DefaultBlogIntegrationImplementation extends BaseBlogInteg * * @param url String * @param method String - * @param params List * @return Object */ protected Object execute(String url, String method, List params) diff --git a/source/java/org/alfresco/repo/cache/HibernateSimpleCacheAdapter.java b/source/java/org/alfresco/repo/cache/HibernateSimpleCacheAdapter.java index f107fb0d29..52045550f2 100644 --- a/source/java/org/alfresco/repo/cache/HibernateSimpleCacheAdapter.java +++ b/source/java/org/alfresco/repo/cache/HibernateSimpleCacheAdapter.java @@ -44,7 +44,6 @@ public class HibernateSimpleCacheAdapter implements Cache /** * Adapt a - * @param cache SimpleCache * @param regionName String */ public HibernateSimpleCacheAdapter(SimpleCache cache, String regionName) diff --git a/source/java/org/alfresco/repo/cache/lookup/EntityLookupCache.java b/source/java/org/alfresco/repo/cache/lookup/EntityLookupCache.java index ff02eac37a..992fbabcb6 100644 --- a/source/java/org/alfresco/repo/cache/lookup/EntityLookupCache.java +++ b/source/java/org/alfresco/repo/cache/lookup/EntityLookupCache.java @@ -40,7 +40,7 @@ import org.springframework.extensions.surf.util.ParameterCheck; * key (perhaps a database ID) and a separate unique key that identifies the object. If no cache * is given, then all calls are passed through to the backing DAO. *

- * The keys must have good equals and hashCode implementations and + * The keys must have good equals and hashCode implementations and * must respect the case-sensitivity of the use-case. *

* All keys will be unique to the given cache region, allowing the cache to be shared diff --git a/source/java/org/alfresco/repo/coci/CheckOutCheckInServicePolicies.java b/source/java/org/alfresco/repo/coci/CheckOutCheckInServicePolicies.java index 4a335c0aab..f70a25d380 100755 --- a/source/java/org/alfresco/repo/coci/CheckOutCheckInServicePolicies.java +++ b/source/java/org/alfresco/repo/coci/CheckOutCheckInServicePolicies.java @@ -85,7 +85,6 @@ public interface CheckOutCheckInServicePolicies /** * * @param workingCopyNodeRef NodeRef - * @param versionProperties Map * @param contentUrl String * @param keepCheckedOut boolean */ diff --git a/source/java/org/alfresco/repo/content/ContentStoreCreatedEvent.java b/source/java/org/alfresco/repo/content/ContentStoreCreatedEvent.java index 9083c4f65d..e6b1e654cd 100644 --- a/source/java/org/alfresco/repo/content/ContentStoreCreatedEvent.java +++ b/source/java/org/alfresco/repo/content/ContentStoreCreatedEvent.java @@ -48,7 +48,6 @@ public class ContentStoreCreatedEvent extends ApplicationEvent * * @param source * the source content store - * @param extendedEventParams Map */ public ContentStoreCreatedEvent(ContentStore source, Map extendedEventParams) { diff --git a/source/java/org/alfresco/repo/content/filestore/SpoofedTextContentReader.java b/source/java/org/alfresco/repo/content/filestore/SpoofedTextContentReader.java index e1e1f7189e..f245180130 100644 --- a/source/java/org/alfresco/repo/content/filestore/SpoofedTextContentReader.java +++ b/source/java/org/alfresco/repo/content/filestore/SpoofedTextContentReader.java @@ -49,7 +49,7 @@ import org.json.simple.parser.JSONParser; /** * Provides access to text data that is generated when requested. *

- * The URL has the format: spoofed://{locale=en_GB,seed=12345,length=1024,strings=["Alfresco", "Cloud"]} + * The URL has the format: spoofed://{locale=en_GB,seed=12345,length=1024,strings=["Alfresco", "Cloud"]} *

* The lexicon for the given locale is found by taking the language part of the locale (en in en_GB) * and finding the resource alfresco/textgen/lexicon-stem-en.txt. diff --git a/source/java/org/alfresco/repo/content/metadata/AbstractMappingMetadataExtracter.java b/source/java/org/alfresco/repo/content/metadata/AbstractMappingMetadataExtracter.java index b05c7066e4..a08c7b39a0 100644 --- a/source/java/org/alfresco/repo/content/metadata/AbstractMappingMetadataExtracter.java +++ b/source/java/org/alfresco/repo/content/metadata/AbstractMappingMetadataExtracter.java @@ -233,7 +233,6 @@ abstract public class AbstractMappingMetadataExtracter implements MetadataExtrac /** * Set the mimetypes that are supported by the extracter. * - * @param supportedMimetypes Collection */ public void setSupportedMimetypes(Collection supportedMimetypes) { @@ -244,7 +243,6 @@ abstract public class AbstractMappingMetadataExtracter implements MetadataExtrac /** * Set the mimetypes that are supported for embedding. * - * @param supportedEmbedMimetypes Collection */ public void setSupportedEmbedMimetypes(Collection supportedEmbedMimetypes) { @@ -336,7 +334,7 @@ abstract public class AbstractMappingMetadataExtracter implements MetadataExtrac * Set whether the extractor should discard metadata that fails to convert to the target type * defined in the data dictionary model. This is true by default i.e. if the data * extracted is not compatible with the target model then the extraction will fail. If this is - * false then any extracted data that fails to convert will be discarded. + * false then any extracted data that fails to convert will be discarded. * * @param failOnTypeConversion false to discard properties that can't get converted * to the dictionary-defined type, or true (default) @@ -462,7 +460,6 @@ abstract public class AbstractMappingMetadataExtracter implements MetadataExtrac /** * Sets the map of source mimetypes to metadata extracter limits. * - * @param mimetypeLimits Map */ public void setMimetypeLimits(Map mimetypeLimits) { @@ -1819,7 +1816,6 @@ abstract public class AbstractMappingMetadataExtracter implements MetadataExtrac * the class, then the {@link #readMappingProperties(String)} method can be used to quickly * generate the return value: *


-     *      protected Map<> getDefaultMapping()
      *      {
      *          return readMappingProperties(DEFAULT_MAPPING);
      *      }
diff --git a/source/java/org/alfresco/repo/content/metadata/RFC822MetadataExtracter.java b/source/java/org/alfresco/repo/content/metadata/RFC822MetadataExtracter.java
index f58f0643a6..d0ed7c9e10 100644
--- a/source/java/org/alfresco/repo/content/metadata/RFC822MetadataExtracter.java
+++ b/source/java/org/alfresco/repo/content/metadata/RFC822MetadataExtracter.java
@@ -58,7 +58,7 @@ import org.alfresco.service.namespace.QName;
  *   messageSubject:           --      imap:messageSubject, cm:title, cm:description, cm:subjectline
  *   messageSent:              --      imap:dateSent, cm:sentdate
  *   messageReceived:          --      imap:dateReceived
- *   All {@link Header#getName() header names}:
+ *   All {@link Header#getName() header names}:
  *      Thread-Index:          --      imap:threadIndex
  *      Message-ID:            --      imap:messageId
  * 
diff --git a/source/java/org/alfresco/repo/content/metadata/TikaAutoMetadataExtracter.java b/source/java/org/alfresco/repo/content/metadata/TikaAutoMetadataExtracter.java index 2ffb5d1650..7dc4fd6f86 100644 --- a/source/java/org/alfresco/repo/content/metadata/TikaAutoMetadataExtracter.java +++ b/source/java/org/alfresco/repo/content/metadata/TikaAutoMetadataExtracter.java @@ -53,8 +53,8 @@ import org.apache.tika.parser.Parser; * subject: -- cm:description * created: -- cm:created * comments: - *

geo:lat: -- cm:latitude - *

geo:long: -- cm:longitude + * geo:lat: -- cm:latitude + * geo:long: -- cm:longitude * * * @since 3.4 diff --git a/source/java/org/alfresco/repo/content/metadata/TikaSpringConfiguredMetadataExtracter.java b/source/java/org/alfresco/repo/content/metadata/TikaSpringConfiguredMetadataExtracter.java index 29354419b4..176b09549b 100644 --- a/source/java/org/alfresco/repo/content/metadata/TikaSpringConfiguredMetadataExtracter.java +++ b/source/java/org/alfresco/repo/content/metadata/TikaSpringConfiguredMetadataExtracter.java @@ -48,8 +48,8 @@ import org.apache.tika.parser.Parser; * subject: -- cm:description * created: -- cm:created * comments: - *

geo:lat: -- cm:latitude - *

geo:long: -- cm:longitude + * geo:lat: -- cm:latitude + * geo:long: -- cm:longitude * * * @since 3.4 diff --git a/source/java/org/alfresco/repo/content/replication/AggregatingContentStore.java b/source/java/org/alfresco/repo/content/replication/AggregatingContentStore.java index 992246d370..dede7b9517 100644 --- a/source/java/org/alfresco/repo/content/replication/AggregatingContentStore.java +++ b/source/java/org/alfresco/repo/content/replication/AggregatingContentStore.java @@ -43,7 +43,7 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; /** - * Aggregating Content Store + *

Aggregating Content Store

*

* A content store implementation that aggregates a set of stores. Content is not * persisted by this store, but rather it relies on any number of diff --git a/source/java/org/alfresco/repo/content/replication/ReplicatingContentStore.java b/source/java/org/alfresco/repo/content/replication/ReplicatingContentStore.java index 0b643b965c..20f5cc9c67 100644 --- a/source/java/org/alfresco/repo/content/replication/ReplicatingContentStore.java +++ b/source/java/org/alfresco/repo/content/replication/ReplicatingContentStore.java @@ -48,7 +48,7 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; /** - * Replicating Content Store + *

Replicating Content Store

*

* A content store implementation that is able to replicate content between stores. * Content is not persisted by this store, but rather it relies on any number of @@ -63,7 +63,7 @@ import org.apache.commons.logging.LogFactory; *

* It supports outbound replication for duplication of data. * - * Outbound Replication + *

Outbound Replication

*

* When this is enabled, then the primary store is used for writes. When the * content write completes (i.e. the write channel is closed) then the content @@ -76,7 +76,7 @@ import org.apache.commons.logging.LogFactory; * occurs during the replication. Depending on the configuration of the server, * further action may need to be taken to rectify the problem manually. * - * Inbound Replication [DEPRECATED: Usage {@link CachingContentStore}] + *

Inbound Replication [DEPRECATED: Usage {@link CachingContentStore}]

*

* This can be used to lazily replicate content onto the primary store. When * content can't be found in the primary store, the other stores are checked diff --git a/source/java/org/alfresco/repo/content/transform/ComplexContentTransformer.java b/source/java/org/alfresco/repo/content/transform/ComplexContentTransformer.java index e572dbd3a4..1eaf729dbe 100644 --- a/source/java/org/alfresco/repo/content/transform/ComplexContentTransformer.java +++ b/source/java/org/alfresco/repo/content/transform/ComplexContentTransformer.java @@ -127,7 +127,6 @@ public class ComplexContentTransformer extends AbstractContentTransformer2 imple * to control the transformers in a different way to their default. * Note that only properties that are supported by the passed-in * {@link TransformationOptions} are changed, others are ignored. - * @param transformationOptionOverrides Map */ public void setTransformationOptionOverrides( Map transformationOptionOverrides) diff --git a/source/java/org/alfresco/repo/content/transform/ContentTransformerHelper.java b/source/java/org/alfresco/repo/content/transform/ContentTransformerHelper.java index 90b1a051b7..67d061809c 100644 --- a/source/java/org/alfresco/repo/content/transform/ContentTransformerHelper.java +++ b/source/java/org/alfresco/repo/content/transform/ContentTransformerHelper.java @@ -308,8 +308,6 @@ public class ContentTransformerHelper implements BeanNameAware * Helper method for {@link #getComments(boolean)} to * create a line that indicates which source and target mimetypes * it supports. - * @param sourceMimetypes List - * @param targetMimetypes List * @param available TODO * @return a String of the form "# only supports xxx, yyy or zzz to aaa or bb\n". */ @@ -450,4 +448,4 @@ public class ContentTransformerHelper implements BeanNameAware suffixAndValue; } } -} \ No newline at end of file +} diff --git a/source/java/org/alfresco/repo/domain/contentdata/AbstractContentDataDAOImpl.java b/source/java/org/alfresco/repo/domain/contentdata/AbstractContentDataDAOImpl.java index 6fdca391c0..099f720baa 100644 --- a/source/java/org/alfresco/repo/domain/contentdata/AbstractContentDataDAOImpl.java +++ b/source/java/org/alfresco/repo/domain/contentdata/AbstractContentDataDAOImpl.java @@ -645,7 +645,7 @@ public abstract class AbstractContentDataDAOImpl implements ContentDataDAO protected abstract int updateContentUrlOrphanTime(Long id, Long orphanTime, Long oldOrphanTime); /** - * Create the row for the alf_content_data + * Create the row for the alf_content_data */ protected abstract ContentDataEntity createContentDataEntity( Long contentUrlId, diff --git a/source/java/org/alfresco/repo/domain/locks/LockEntity.java b/source/java/org/alfresco/repo/domain/locks/LockEntity.java index 2d1444175b..c0f4622f5b 100644 --- a/source/java/org/alfresco/repo/domain/locks/LockEntity.java +++ b/source/java/org/alfresco/repo/domain/locks/LockEntity.java @@ -90,7 +90,7 @@ public class LockEntity * Determine if the lock is logically exclusive. A lock is exclusive if the * shared lock resource matches the exclusive lock resource. * - * @return Returns true if the lock is exclusive or false if it is not + * @return Returns true if the lock is exclusive or false if it is not */ public boolean isExclusive() { diff --git a/source/java/org/alfresco/repo/domain/node/NodeDAO.java b/source/java/org/alfresco/repo/domain/node/NodeDAO.java index c880d10796..bc1371262e 100644 --- a/source/java/org/alfresco/repo/domain/node/NodeDAO.java +++ b/source/java/org/alfresco/repo/domain/node/NodeDAO.java @@ -447,7 +447,7 @@ public interface NodeDAO extends NodeBulkLoader /** * @param nodeId the source or target of the associations - * @return Returns all the node associations where the node is the source or target + * @return Returns all the node associations where the node is the source or target */ public Collection> getNodeAssocsToAndFrom(Long nodeId); @@ -604,7 +604,7 @@ public interface NodeDAO extends NodeBulkLoader * * @param parentNodeId the parent node ID * @param childNodeId the child node ID to filter on; null for no filtering - * @param assocTypeQName the association type qname to filter on; null for no filtering + * @param assocTypeQName the association type qname to filter on; null for no filtering * @param assocQName the association qname to filter on; null for no filtering * @param isPrimary filter for primary (true) or secondary associations; * null for no filtering. @@ -629,7 +629,7 @@ public interface NodeDAO extends NodeBulkLoader * This is an efficient query for node paths. * * @param parentNodeId the parent node ID - * @param assocTypeQName the association type qname to filter on; null for no filtering + * @param assocTypeQName the association type qname to filter on; null for no filtering * @param assocQName the association qname to filter on; null for no filtering * @param maxResults the maximum number of results to return. The query will be terminated efficiently * after that number of results @@ -646,7 +646,7 @@ public interface NodeDAO extends NodeBulkLoader * Get the child associations of a given parent node, optionally filtering on type QName. * * @param parentNodeId the parent node ID - * @param assocTypeQNames the association type qnames to filter on; null for no filtering + * @param assocTypeQNames the association type qnames to filter on; null for no filtering * @param resultsCallback the callback that will be called with the results */ public void getChildAssocs( @@ -730,7 +730,7 @@ public interface NodeDAO extends NodeBulkLoader * This is an efficient query for node paths. * * @param childNodeId the child node ID - * @param assocTypeQName the association type qname to filter on; null for no filtering + * @param assocTypeQName the association type qname to filter on; null for no filtering * @param assocQName the association qname to filter on; null for no filtering * @param isPrimary filter for primary (true) or secondary associations; * null for no filtering. diff --git a/source/java/org/alfresco/repo/domain/permissions/AbstractPermissionsDaoComponentImpl.java b/source/java/org/alfresco/repo/domain/permissions/AbstractPermissionsDaoComponentImpl.java index c300e30a41..8c844efd04 100644 --- a/source/java/org/alfresco/repo/domain/permissions/AbstractPermissionsDaoComponentImpl.java +++ b/source/java/org/alfresco/repo/domain/permissions/AbstractPermissionsDaoComponentImpl.java @@ -122,7 +122,6 @@ public abstract class AbstractPermissionsDaoComponentImpl implements Permissions /** * Set the mapping of protocol to DAO - * @param map Map */ public void setProtocolToACLDAO(Map map) { diff --git a/source/java/org/alfresco/repo/domain/permissions/AclDAOImpl.java b/source/java/org/alfresco/repo/domain/permissions/AclDAOImpl.java index 09df55cb5d..5b6f24ac60 100644 --- a/source/java/org/alfresco/repo/domain/permissions/AclDAOImpl.java +++ b/source/java/org/alfresco/repo/domain/permissions/AclDAOImpl.java @@ -136,7 +136,6 @@ public class AclDAOImpl implements AclDAO /** * Set the ACL cache * - * @param aclCache SimpleCache */ public void setAclCache(SimpleCache aclCache) { diff --git a/source/java/org/alfresco/repo/forms/processor/node/ContentModelItemData.java b/source/java/org/alfresco/repo/forms/processor/node/ContentModelItemData.java index 6e7677d623..6a2143f100 100644 --- a/source/java/org/alfresco/repo/forms/processor/node/ContentModelItemData.java +++ b/source/java/org/alfresco/repo/forms/processor/node/ContentModelItemData.java @@ -76,7 +76,7 @@ public class ContentModelItemData implements TransientValueGetter /** * @return the property value associated with the key or - * null if none exists. + * null if none exists. */ public Serializable getPropertyValue(QName key) { @@ -85,7 +85,7 @@ public class ContentModelItemData implements TransientValueGetter /** * @return the association value associated with the key or - * null if none exists. + * null if none exists. */ public Serializable getAssociationValue(QName key) { @@ -94,7 +94,7 @@ public class ContentModelItemData implements TransientValueGetter /** * @return the value associated with the transient property specified by the - * fieldName or null if none exists. + * fieldName or null if none exists. */ public Object getTransientValue(String fieldName) { diff --git a/source/java/org/alfresco/repo/forms/processor/workflow/AbstractWorkflowFormProcessor.java b/source/java/org/alfresco/repo/forms/processor/workflow/AbstractWorkflowFormProcessor.java index 57bcecaf44..afb810eba3 100644 --- a/source/java/org/alfresco/repo/forms/processor/workflow/AbstractWorkflowFormProcessor.java +++ b/source/java/org/alfresco/repo/forms/processor/workflow/AbstractWorkflowFormProcessor.java @@ -227,7 +227,6 @@ public abstract class AbstractWorkflowFormProcessor exten * used to accumulate all the changes specified in the {@link Form} and then persist them. * * @param item ItemType - * @return ContentModelFormPersister */ protected abstract ContentModelFormPersister makeFormPersister(ItemType item); diff --git a/source/java/org/alfresco/repo/imap/ImapService.java b/source/java/org/alfresco/repo/imap/ImapService.java index 68de4550ec..b84a7c8c7d 100644 --- a/source/java/org/alfresco/repo/imap/ImapService.java +++ b/source/java/org/alfresco/repo/imap/ImapService.java @@ -128,7 +128,7 @@ public interface ImapService *
* mailbox parameter may specify absolute or relative path to a folder. Absolute path uniquely identifies some directory, whereas relative path implies that root * folder should be IMAP home directory for the specified user rather than IMAP root (i.e. IMAP mount point). Mailbox will - * be found or created (mayCreate=true, mayExist=false or ) in user's IMAP home directory if relative path is specified.
+ * be found or created (mayCreate=true, mayExist=false or ) in user's IMAP home directory if relative path is specified.
*
* mayExist and mayCreate parameters' combinations and results: *

    diff --git a/source/java/org/alfresco/repo/importer/ImporterBootstrap.java b/source/java/org/alfresco/repo/importer/ImporterBootstrap.java index 77b140188d..e962ba725a 100644 --- a/source/java/org/alfresco/repo/importer/ImporterBootstrap.java +++ b/source/java/org/alfresco/repo/importer/ImporterBootstrap.java @@ -211,7 +211,6 @@ public class ImporterBootstrap extends AbstractLifecycleBean /** * Sets the bootstrap views * - * @param bootstrapViews List */ public void setBootstrapViews(List bootstrapViews) { @@ -221,7 +220,6 @@ public class ImporterBootstrap extends AbstractLifecycleBean /** * Sets the bootstrap views * - * @param bootstrapViews List */ public void addBootstrapViews(List bootstrapViews) { diff --git a/source/java/org/alfresco/repo/importer/ImporterBootstrapViews.java b/source/java/org/alfresco/repo/importer/ImporterBootstrapViews.java index 92df44cfd0..7a90413757 100644 --- a/source/java/org/alfresco/repo/importer/ImporterBootstrapViews.java +++ b/source/java/org/alfresco/repo/importer/ImporterBootstrapViews.java @@ -55,7 +55,6 @@ public class ImporterBootstrapViews implements InitializingBean /** * Sets the bootstrap views * - * @param bootstrapViews List */ public void setBootstrapViews(List bootstrapViews) { diff --git a/source/java/org/alfresco/repo/jscript/NativeMap.java b/source/java/org/alfresco/repo/jscript/NativeMap.java index e9eca28916..fa93c3a2f1 100644 --- a/source/java/org/alfresco/repo/jscript/NativeMap.java +++ b/source/java/org/alfresco/repo/jscript/NativeMap.java @@ -50,7 +50,6 @@ public class NativeMap implements Scriptable, Wrapper * Construct * * @param scope Scriptable - * @param map Map * @return native map */ public static NativeMap wrap(Scriptable scope, Map map) @@ -62,7 +61,6 @@ public class NativeMap implements Scriptable, Wrapper * Construct * * @param scope Scriptable - * @param map Map */ public NativeMap(Scriptable scope, Map map) { diff --git a/source/java/org/alfresco/repo/jscript/app/JSONConversionComponent.java b/source/java/org/alfresco/repo/jscript/app/JSONConversionComponent.java index 8a8929967c..30c96fe171 100644 --- a/source/java/org/alfresco/repo/jscript/app/JSONConversionComponent.java +++ b/source/java/org/alfresco/repo/jscript/app/JSONConversionComponent.java @@ -391,7 +391,6 @@ public class JSONConversionComponent /** * * @param nodeRef NodeRef - * @param properties Map * @param useShortQNames boolean * @return JSONObject */ diff --git a/source/java/org/alfresco/repo/management/subsystems/PropertyBackedBean.java b/source/java/org/alfresco/repo/management/subsystems/PropertyBackedBean.java index a1861ab3b6..c147d21c2a 100644 --- a/source/java/org/alfresco/repo/management/subsystems/PropertyBackedBean.java +++ b/source/java/org/alfresco/repo/management/subsystems/PropertyBackedBean.java @@ -76,7 +76,6 @@ public interface PropertyBackedBean extends PropertyBackedBeanState * confirmed to the entire cluster with {@link #start()}, presumably after persistence of the new state has been * completed. * - * @param properties Map */ public void setProperties(Map properties); @@ -86,7 +85,6 @@ public interface PropertyBackedBean extends PropertyBackedBeanState * confirmed to the entire cluster with {@link #start()}, presumably after persistence of the new state has been * completed. * - * @param attributes Collection */ public void removeProperties(Collection attributes); } diff --git a/source/java/org/alfresco/repo/model/ml/EmptyTranslationAspect.java b/source/java/org/alfresco/repo/model/ml/EmptyTranslationAspect.java index fbb6ba61ab..0866bc97f3 100644 --- a/source/java/org/alfresco/repo/model/ml/EmptyTranslationAspect.java +++ b/source/java/org/alfresco/repo/model/ml/EmptyTranslationAspect.java @@ -97,7 +97,7 @@ public class EmptyTranslationAspect implements } /** - * Copy a cm:mlEmptyTranslation is not permit. + * Copy a cm:mlEmptyTranslation is not permit. */ public void onCopyNode(QName classRef, NodeRef sourceNodeRef, StoreRef destinationStoreRef, boolean copyToNewNode, PolicyScope copyDetails) { @@ -105,7 +105,7 @@ public class EmptyTranslationAspect implements } /** - * If a content is added to a cm:mlEmptyTranslation, remove this aspect. + * If a content is added to a cm:mlEmptyTranslation, remove this aspect. */ public void onContentUpdate(NodeRef nodeRef, boolean newContent) { diff --git a/source/java/org/alfresco/repo/module/tool/WarHelper.java b/source/java/org/alfresco/repo/module/tool/WarHelper.java index a4e3b43e4c..b082ddeddd 100644 --- a/source/java/org/alfresco/repo/module/tool/WarHelper.java +++ b/source/java/org/alfresco/repo/module/tool/WarHelper.java @@ -88,7 +88,7 @@ public interface WarHelper * Lists all the currently installed modules in the WAR * @since 5.1 * @param war the war - * @return List an unordered list of module details. + * @return an unordered list of module details. * @throws ModuleManagementToolException */ List listModules(TFile war); diff --git a/source/java/org/alfresco/repo/node/db/DbNodeServiceImpl.java b/source/java/org/alfresco/repo/node/db/DbNodeServiceImpl.java index 33ad06d1a2..52debdab02 100644 --- a/source/java/org/alfresco/repo/node/db/DbNodeServiceImpl.java +++ b/source/java/org/alfresco/repo/node/db/DbNodeServiceImpl.java @@ -170,7 +170,7 @@ public class DbNodeServiceImpl extends AbstractNodeServiceImpl implements Extens /** * Set whether cm:auditable timestamps should be propagated to parent nodes - * where the parent-child relationship has been marked using propagateTimestamps. + * where the parent-child relationship has been marked using propagateTimestamps. * * @param enableTimestampPropagation true to propagate timestamps to the parent * node where appropriate diff --git a/source/java/org/alfresco/repo/oauth1/OAuth1CredentialsStoreServiceImpl.java b/source/java/org/alfresco/repo/oauth1/OAuth1CredentialsStoreServiceImpl.java index 4643df3e1f..6fc5218cc2 100644 --- a/source/java/org/alfresco/repo/oauth1/OAuth1CredentialsStoreServiceImpl.java +++ b/source/java/org/alfresco/repo/oauth1/OAuth1CredentialsStoreServiceImpl.java @@ -194,7 +194,6 @@ public class OAuth1CredentialsStoreServiceImpl implements OAuth1CredentialsStore /** * @param remoteSystemId String - * @return List */ @Override public List listSharedOAuth1Credentials(String remoteSystemId) diff --git a/source/java/org/alfresco/repo/oauth2/OAuth2CredentialsStoreServiceImpl.java b/source/java/org/alfresco/repo/oauth2/OAuth2CredentialsStoreServiceImpl.java index ab4e75fff9..f97041d65b 100644 --- a/source/java/org/alfresco/repo/oauth2/OAuth2CredentialsStoreServiceImpl.java +++ b/source/java/org/alfresco/repo/oauth2/OAuth2CredentialsStoreServiceImpl.java @@ -231,7 +231,6 @@ public class OAuth2CredentialsStoreServiceImpl implements OAuth2CredentialsStore /** * @param remoteSystemId String - * @return List */ @Override public List listSharedOAuth2Credentials(String remoteSystemId) diff --git a/source/java/org/alfresco/repo/policy/PolicyComponent.java b/source/java/org/alfresco/repo/policy/PolicyComponent.java index 2b836c8f94..f09c9d189d 100644 --- a/source/java/org/alfresco/repo/policy/PolicyComponent.java +++ b/source/java/org/alfresco/repo/policy/PolicyComponent.java @@ -218,7 +218,6 @@ public interface PolicyComponent /** * Unbind behaviour * - * @param definition BehaviourDefinition */ public void removeClassDefinition(BehaviourDefinition definition); diff --git a/source/java/org/alfresco/repo/policy/PolicyScope.java b/source/java/org/alfresco/repo/policy/PolicyScope.java index 7aa9bc0e79..d4075d66ea 100644 --- a/source/java/org/alfresco/repo/policy/PolicyScope.java +++ b/source/java/org/alfresco/repo/policy/PolicyScope.java @@ -185,7 +185,6 @@ public class PolicyScope extends AspectDetails * Get a child association * * @param classRef QName - * @return List */ public List getChildAssociations(QName classRef) { @@ -255,7 +254,6 @@ public class PolicyScope extends AspectDetails * Get associations * * @param classRef QName - * @return List */ public List getAssociations(QName classRef) { @@ -452,4 +450,4 @@ public class PolicyScope extends AspectDetails { return this.targetAssocs; } -} \ No newline at end of file +} diff --git a/source/java/org/alfresco/repo/processor/BaseProcessor.java b/source/java/org/alfresco/repo/processor/BaseProcessor.java index 1a77438138..a120af55e2 100644 --- a/source/java/org/alfresco/repo/processor/BaseProcessor.java +++ b/source/java/org/alfresco/repo/processor/BaseProcessor.java @@ -161,7 +161,7 @@ public abstract class BaseProcessor implements Processor /** * Get the collection of processor extensions * - * @return Collection collection of processor extensions + * @return collection of processor extensions */ public Collection getProcessorExtensions() { diff --git a/source/java/org/alfresco/repo/publishing/NodeSnapshotTransferImpl.java b/source/java/org/alfresco/repo/publishing/NodeSnapshotTransferImpl.java index 594f6b33d4..8201aa024c 100644 --- a/source/java/org/alfresco/repo/publishing/NodeSnapshotTransferImpl.java +++ b/source/java/org/alfresco/repo/publishing/NodeSnapshotTransferImpl.java @@ -92,7 +92,6 @@ public class NodeSnapshotTransferImpl implements NodeSnapshot } /** - * @return List */ public List getOutboundPeerAssociations() { diff --git a/source/java/org/alfresco/repo/publishing/PublishingEventHelper.java b/source/java/org/alfresco/repo/publishing/PublishingEventHelper.java index 7a2fbf096c..f743fd0800 100644 --- a/source/java/org/alfresco/repo/publishing/PublishingEventHelper.java +++ b/source/java/org/alfresco/repo/publishing/PublishingEventHelper.java @@ -361,7 +361,6 @@ public class PublishingEventHelper * Returns a {@link List} of the {@link NodeRef}s representing PublishingEvents that were scheduled to publish at least one of the specified publishedNodes. * @param queue NodeRef * @param publishedNodes NodeRef.. - * @return List */ public List getEventNodesForPublishedNodes(final NodeRef queue, NodeRef... publishedNodes) { @@ -371,8 +370,6 @@ public class PublishingEventHelper /** * Returns a {@link List} of the {@link NodeRef}s representing PublishingEvents that were scheduled to publish at least one of the specified publishedNodes. * @param queue NodeRef - * @param publishedNodes Collection - * @return List */ public List getEventNodesForPublishedNodes(final NodeRef queue, Collection publishedNodes) { @@ -382,8 +379,6 @@ public class PublishingEventHelper /** * Returns a {@link List} of the {@link NodeRef}s representing PublishingEvents that were scheduled to unpublish at least one of the specified unpublishedNodes. * @param queue NodeRef - * @param unpublishedNodes Collection - * @return List */ public List getEventNodesForUnpublishedNodes(final NodeRef queue, Collection unpublishedNodes) { @@ -394,7 +389,6 @@ public class PublishingEventHelper * Returns a {@link List} of the {@link NodeRef}s representing PublishingEvents that were scheduled to publish the specified publishedNode. * @param queue NodeRef * @param publishedNode NodeRef - * @return List */ public List getEventNodesForPublishedNode(final NodeRef queue, NodeRef publishedNode) { @@ -406,7 +400,6 @@ public class PublishingEventHelper * Returns a {@link List} of the {@link NodeRef}s representing PublishingEvents that were scheduled to unpublish the specified unpublishedNode. * @param queue NodeRef * @param unpublishedNode NodeRef - * @return List */ public List getEventNodesForUnpublishedNode(final NodeRef queue, NodeRef unpublishedNode) { @@ -686,7 +679,6 @@ public class PublishingEventHelper /** * Sets a list of excluded aspects, assumes the fully qualified name. Replaces any exising excluded aspects. - * @param excludedAspects Collection */ public void setExcludedAspects(Collection excludedAspects) { diff --git a/source/java/org/alfresco/repo/rendition/CompositeRenditionDefinitionImpl.java b/source/java/org/alfresco/repo/rendition/CompositeRenditionDefinitionImpl.java index a9df428841..fca6624950 100644 --- a/source/java/org/alfresco/repo/rendition/CompositeRenditionDefinitionImpl.java +++ b/source/java/org/alfresco/repo/rendition/CompositeRenditionDefinitionImpl.java @@ -108,7 +108,6 @@ public class CompositeRenditionDefinitionImpl extends RenditionDefinitionImpl im } /** - * @return List * @see org.alfresco.service.cmr.action.ActionList#getActions() */ public List getActions() diff --git a/source/java/org/alfresco/repo/rendition/RenditionServiceImpl.java b/source/java/org/alfresco/repo/rendition/RenditionServiceImpl.java index b150d38d18..7bd93e0ec5 100644 --- a/source/java/org/alfresco/repo/rendition/RenditionServiceImpl.java +++ b/source/java/org/alfresco/repo/rendition/RenditionServiceImpl.java @@ -163,7 +163,6 @@ public class RenditionServiceImpl implements /** * Sets the list of known cancellable actions used by {@link #cancelRenditions(NodeRef)}. - * @param knownCancellableActionTypes List * @since 4.1.6 */ public void setKnownCancellableActionTypes(List knownCancellableActionTypes) diff --git a/source/java/org/alfresco/repo/rendition/executer/AbstractRenderingEngine.java b/source/java/org/alfresco/repo/rendition/executer/AbstractRenderingEngine.java index 9e89fa67cc..0bbbc2071c 100644 --- a/source/java/org/alfresco/repo/rendition/executer/AbstractRenderingEngine.java +++ b/source/java/org/alfresco/repo/rendition/executer/AbstractRenderingEngine.java @@ -627,7 +627,6 @@ public abstract class AbstractRenderingEngine extends ActionExecuterAbstractBase /** * Supplies the list of parameters required by this rendering engine. * - * @return Collection */ protected Collection getParameterDefinitions() { diff --git a/source/java/org/alfresco/repo/search/CannedQueryDef.java b/source/java/org/alfresco/repo/search/CannedQueryDef.java index a1d2d3a512..ecccaa7254 100644 --- a/source/java/org/alfresco/repo/search/CannedQueryDef.java +++ b/source/java/org/alfresco/repo/search/CannedQueryDef.java @@ -57,7 +57,6 @@ public interface CannedQueryDef /** * Get the definitions for any query parameters. * - * @return Collection */ public Collection getQueryParameterDefs(); diff --git a/source/java/org/alfresco/repo/search/impl/SearchServiceSubSystemDelegator.java b/source/java/org/alfresco/repo/search/impl/SearchServiceSubSystemDelegator.java index 92f0eeaa44..16a1d22c60 100644 --- a/source/java/org/alfresco/repo/search/impl/SearchServiceSubSystemDelegator.java +++ b/source/java/org/alfresco/repo/search/impl/SearchServiceSubSystemDelegator.java @@ -139,7 +139,6 @@ public class SearchServiceSubSystemDelegator implements SearchService * @param parameters QueryParameterDefinition[] * @param namespacePrefixResolver NamespacePrefixResolver * @param followAllParentLinks boolean - * @return List * @throws InvalidNodeRefException * @throws XPathException * @see org.alfresco.service.cmr.search.SearchService#selectNodes(org.alfresco.service.cmr.repository.NodeRef, java.lang.String, org.alfresco.service.cmr.search.QueryParameterDefinition[], org.alfresco.service.namespace.NamespacePrefixResolver, boolean) @@ -157,7 +156,6 @@ public class SearchServiceSubSystemDelegator implements SearchService * @param namespacePrefixResolver NamespacePrefixResolver * @param followAllParentLinks boolean * @param language String - * @return List * @throws InvalidNodeRefException * @throws XPathException * @see org.alfresco.service.cmr.search.SearchService#selectNodes(org.alfresco.service.cmr.repository.NodeRef, java.lang.String, org.alfresco.service.cmr.search.QueryParameterDefinition[], org.alfresco.service.namespace.NamespacePrefixResolver, boolean, java.lang.String) @@ -175,7 +173,6 @@ public class SearchServiceSubSystemDelegator implements SearchService * @param parameters QueryParameterDefinition[] * @param namespacePrefixResolver NamespacePrefixResolver * @param followAllParentLinks boolean - * @return List * @throws InvalidNodeRefException * @throws XPathException * @see org.alfresco.service.cmr.search.SearchService#selectProperties(org.alfresco.service.cmr.repository.NodeRef, java.lang.String, org.alfresco.service.cmr.search.QueryParameterDefinition[], org.alfresco.service.namespace.NamespacePrefixResolver, boolean) @@ -193,7 +190,6 @@ public class SearchServiceSubSystemDelegator implements SearchService * @param namespacePrefixResolver NamespacePrefixResolver * @param followAllParentLinks boolean * @param language String - * @return List * @throws InvalidNodeRefException * @throws XPathException * @see org.alfresco.service.cmr.search.SearchService#selectProperties(org.alfresco.service.cmr.repository.NodeRef, java.lang.String, org.alfresco.service.cmr.search.QueryParameterDefinition[], org.alfresco.service.namespace.NamespacePrefixResolver, boolean, java.lang.String) diff --git a/source/java/org/alfresco/repo/search/impl/lucene/AbstractLuceneBase.java b/source/java/org/alfresco/repo/search/impl/lucene/AbstractLuceneBase.java index 5f7eb521ce..c5530008ee 100644 --- a/source/java/org/alfresco/repo/search/impl/lucene/AbstractLuceneBase.java +++ b/source/java/org/alfresco/repo/search/impl/lucene/AbstractLuceneBase.java @@ -338,8 +338,6 @@ public abstract class AbstractLuceneBase /** * Execute actions against a read only index (all write ops will block) * - * @param lockWork LockWork - * @param R * @return - the result returned by the action. */ public R doReadOnly(LockWork lockWork) diff --git a/source/java/org/alfresco/repo/search/impl/lucene/FilterIndexReaderByStringId.java b/source/java/org/alfresco/repo/search/impl/lucene/FilterIndexReaderByStringId.java index 0c68a56dd3..fdb098ab59 100644 --- a/source/java/org/alfresco/repo/search/impl/lucene/FilterIndexReaderByStringId.java +++ b/source/java/org/alfresco/repo/search/impl/lucene/FilterIndexReaderByStringId.java @@ -71,8 +71,6 @@ public class FilterIndexReaderByStringId extends FilterIndexReader * * @param id String * @param reader IndexReader - * @param deletions Set - * @param containerDeletions Set * @param deleteNodesOnly boolean */ public FilterIndexReaderByStringId(String id, IndexReader reader, Set deletions, Set containerDeletions, boolean deleteNodesOnly) diff --git a/source/java/org/alfresco/repo/search/impl/lucene/index/IndexInfo.java b/source/java/org/alfresco/repo/search/impl/lucene/index/IndexInfo.java index bdca838757..7e3208afe2 100644 --- a/source/java/org/alfresco/repo/search/impl/lucene/index/IndexInfo.java +++ b/source/java/org/alfresco/repo/search/impl/lucene/index/IndexInfo.java @@ -1198,7 +1198,6 @@ public class IndexInfo implements IndexMonitor * Get the deletions for a given index (there is no check if they should be applied that is up to the calling layer) * * @param id String - * @return Set * @throws IOException */ public Set getDeletions(String id) throws IOException @@ -1453,8 +1452,6 @@ public class IndexInfo implements IndexMonitor * Get the main index reader augmented with the specified TX data As above but we add the TX data * * @param id String - * @param deletions Set - * @param containerDeletions Set * @param deleteOnlyNodes boolean * @return IndexReader * @throws IOException diff --git a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBColumn.java b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBColumn.java index c28754a811..9b6421db9a 100644 --- a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBColumn.java +++ b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBColumn.java @@ -40,7 +40,6 @@ public class DBColumn extends BaseColumn /** * @param function Function - * @param functionArguments Map * @param alias String */ public DBColumn(Function function, Map functionArguments, String alias) diff --git a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBConjunction.java b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBConjunction.java index cc348196f8..7e3a5ebe66 100644 --- a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBConjunction.java +++ b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBConjunction.java @@ -49,7 +49,6 @@ public class DBConjunction extends BaseConjunction implements DBQueryBuilderComp { /** - * @param constraints List */ public DBConjunction(List constraints) { diff --git a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBDisjunction.java b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBDisjunction.java index eb892f68ee..dabd201ca8 100644 --- a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBDisjunction.java +++ b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBDisjunction.java @@ -49,7 +49,6 @@ public class DBDisjunction extends BaseDisjunction implements DBQueryBuilderComp { /** - * @param constraints List */ public DBDisjunction(List constraints) { diff --git a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBFunctionArgument.java b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBFunctionArgument.java index 015179536a..3f2a62914e 100644 --- a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBFunctionArgument.java +++ b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBFunctionArgument.java @@ -41,7 +41,6 @@ public class DBFunctionArgument extends BaseFunctionArgument /** * @param name String * @param function Function - * @param arguments Map */ public DBFunctionArgument(String name, Function function, Map arguments) { diff --git a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBFunctionalConstraint.java b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBFunctionalConstraint.java index ebdbcb142b..9c8447e621 100644 --- a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBFunctionalConstraint.java +++ b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBFunctionalConstraint.java @@ -49,7 +49,6 @@ public class DBFunctionalConstraint extends BaseFunctionalConstraint implements /** * @param function Function - * @param arguments Map */ public DBFunctionalConstraint(Function function, Map arguments) { diff --git a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBListArgument.java b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBListArgument.java index 8a9c0fb79d..eb4a532d36 100644 --- a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBListArgument.java +++ b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBListArgument.java @@ -39,7 +39,6 @@ public class DBListArgument extends BaseListArgument /** * @param name String - * @param arguments List */ public DBListArgument(String name, List arguments) { diff --git a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBQuery.java b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBQuery.java index 91b5fb811d..fd98d9bc77 100644 --- a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBQuery.java +++ b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBQuery.java @@ -75,10 +75,8 @@ public class DBQuery extends BaseQuery implements DBQueryBuilderComponent Set selectorGroup; /** - * @param columns List * @param source Source * @param constraint Constraint - * @param orderings List */ public DBQuery(List columns, Source source, Constraint constraint, List orderings) { diff --git a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBQueryBuilderComponent.java b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBQueryBuilderComponent.java index f2e55ef5a2..444f5968c8 100644 --- a/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBQueryBuilderComponent.java +++ b/source/java/org/alfresco/repo/search/impl/querymodel/impl/db/DBQueryBuilderComponent.java @@ -61,8 +61,6 @@ public interface DBQueryBuilderComponent * @param qnameDAO QNameDAO * @param nodeDAO NodeDAO * @param tenantService TenantService - * @param selectors Set - * @param functionArgs Map * @param functionContext FunctionEvaluationContext */ public void prepare(NamespaceService namespaceService, DictionaryService dictionaryService, QNameDAO qnameDAO, NodeDAO nodeDAO, TenantService tenantService, Set selectors, Map functionArgs, FunctionEvaluationContext functionContext, boolean supportBooleanFloatAndDouble); diff --git a/source/java/org/alfresco/repo/search/impl/solr/facet/SolrFacetHelper.java b/source/java/org/alfresco/repo/search/impl/solr/facet/SolrFacetHelper.java index e9cadd2af6..44577a0f29 100644 --- a/source/java/org/alfresco/repo/search/impl/solr/facet/SolrFacetHelper.java +++ b/source/java/org/alfresco/repo/search/impl/solr/facet/SolrFacetHelper.java @@ -58,7 +58,6 @@ public class SolrFacetHelper /** * Constructor * - * @param facetQueryProviders List */ public SolrFacetHelper(List facetQueryProviders) { diff --git a/source/java/org/alfresco/repo/search/results/ChildAssocRefResultSet.java b/source/java/org/alfresco/repo/search/results/ChildAssocRefResultSet.java index 0c4a17b9a6..759f0b50a2 100644 --- a/source/java/org/alfresco/repo/search/results/ChildAssocRefResultSet.java +++ b/source/java/org/alfresco/repo/search/results/ChildAssocRefResultSet.java @@ -60,7 +60,6 @@ public class ChildAssocRefResultSet extends AbstractResultSet /** * Normal constructor * @param nodeService NodeService - * @param cars List */ public ChildAssocRefResultSet(NodeService nodeService, List cars) { @@ -72,7 +71,6 @@ public class ChildAssocRefResultSet extends AbstractResultSet /** * Constructor that may expand all child assoc parents provided * @param nodeService NodeService - * @param nodeRefs List nodeRefs * @param resolveAllParents boolean */ public ChildAssocRefResultSet(NodeService nodeService, List nodeRefs, boolean resolveAllParents) diff --git a/source/java/org/alfresco/repo/search/results/ResultSetSPIWrapper.java b/source/java/org/alfresco/repo/search/results/ResultSetSPIWrapper.java index 6aa36bdeb7..bd907b365a 100644 --- a/source/java/org/alfresco/repo/search/results/ResultSetSPIWrapper.java +++ b/source/java/org/alfresco/repo/search/results/ResultSetSPIWrapper.java @@ -52,7 +52,6 @@ public class ResultSetSPIWrapper */ public ResultSetSPIWrapper(ResultSetSPI wrapped) { diff --git a/source/java/org/alfresco/repo/search/results/SortedResultSet.java b/source/java/org/alfresco/repo/search/results/SortedResultSet.java index 0f1db33245..169ab19e5b 100644 --- a/source/java/org/alfresco/repo/search/results/SortedResultSet.java +++ b/source/java/org/alfresco/repo/search/results/SortedResultSet.java @@ -88,7 +88,6 @@ public class SortedResultSet implements ResultSet * * @param resultSet ResultSet * @param nodeService NodeService - * @param sortDefinitions List * @param namespacePrefixResolver NamespacePrefixResolver * @param dictionaryService DictionaryService * @param locale Locale diff --git a/source/java/org/alfresco/repo/security/authentication/ChainingAuthenticationComponentImpl.java b/source/java/org/alfresco/repo/security/authentication/ChainingAuthenticationComponentImpl.java index 70f2c1f954..8414ff34bf 100644 --- a/source/java/org/alfresco/repo/security/authentication/ChainingAuthenticationComponentImpl.java +++ b/source/java/org/alfresco/repo/security/authentication/ChainingAuthenticationComponentImpl.java @@ -72,7 +72,6 @@ public class ChainingAuthenticationComponentImpl extends AbstractChainingAuthent /** * Set a list of authentication components * - * @param authenticationComponents List */ public void setAuthenticationComponents(List authenticationComponents) { @@ -293,7 +292,6 @@ public class ChainingAuthenticationComponentImpl extends AbstractChainingAuthent /** * Helper to get authentication components * - * @return Collection */ protected Collection getUsableAuthenticationComponents() { diff --git a/source/java/org/alfresco/repo/security/authentication/CompositePasswordEncoder.java b/source/java/org/alfresco/repo/security/authentication/CompositePasswordEncoder.java index e609958440..10a900cf85 100644 --- a/source/java/org/alfresco/repo/security/authentication/CompositePasswordEncoder.java +++ b/source/java/org/alfresco/repo/security/authentication/CompositePasswordEncoder.java @@ -71,7 +71,7 @@ public class CompositePasswordEncoder /** * Is the preferred encoding the last encoding to be used. - * @param hashIndicator a List representing the encoding + * @param hashIndicator representing the encoding * @return true if is correct */ public boolean lastEncodingIsPreferred(List hashIndicator) @@ -278,4 +278,4 @@ public class CompositePasswordEncoder } throw new AlfrescoRuntimeException("Unsupported encoder for matching: "+encoderKey); } -} \ No newline at end of file +} diff --git a/source/java/org/alfresco/repo/security/authentication/ldap/LDAPInitialDirContextFactory.java b/source/java/org/alfresco/repo/security/authentication/ldap/LDAPInitialDirContextFactory.java index a2b762ecf1..0ab5b92458 100644 --- a/source/java/org/alfresco/repo/security/authentication/ldap/LDAPInitialDirContextFactory.java +++ b/source/java/org/alfresco/repo/security/authentication/ldap/LDAPInitialDirContextFactory.java @@ -43,7 +43,6 @@ public interface LDAPInitialDirContextFactory /** * Set the LDAP environment Hashtable properties used ot initialise the LDAP connection. * - * @param environment Map */ public void setInitialDirContextEnvironment(Map environment); diff --git a/source/java/org/alfresco/repo/security/authority/AbstractAuthorityBridgeDAO.java b/source/java/org/alfresco/repo/security/authority/AbstractAuthorityBridgeDAO.java index bd901ce80a..78e73fd525 100644 --- a/source/java/org/alfresco/repo/security/authority/AbstractAuthorityBridgeDAO.java +++ b/source/java/org/alfresco/repo/security/authority/AbstractAuthorityBridgeDAO.java @@ -169,7 +169,6 @@ public abstract class AbstractAuthorityBridgeDAO implements AuthorityBridgeDAO * @param memberAssocQNameId Long * @param authorityNameQNameId Long * @param storeId Long - * @return List */ protected abstract List selectDirectAuthoritiesForUser(Long authorityContainerTypeQNameId, Long memberAssocQNameId, Long authorityNameQNameId, Long storeId, Long nodeId); @@ -179,7 +178,6 @@ public abstract class AbstractAuthorityBridgeDAO implements AuthorityBridgeDAO * @param memberAssocQNameId Long * @param authorityNameQNameId Long * @param storeId Long - * @return List */ protected abstract List selectAuthorityBridgeLinks(Long authorityContainerTypeQNameId, Long memberAssocQNameId, Long authorityNameQNameId, Long storeId); diff --git a/source/java/org/alfresco/repo/security/permissions/AccessControlList.java b/source/java/org/alfresco/repo/security/permissions/AccessControlList.java index 6d6e3d2af0..9f7b73880b 100644 --- a/source/java/org/alfresco/repo/security/permissions/AccessControlList.java +++ b/source/java/org/alfresco/repo/security/permissions/AccessControlList.java @@ -48,7 +48,6 @@ public interface AccessControlList extends Serializable * * To make permission evaluation faster for the common cases * - * @return List */ public List getEntries(); diff --git a/source/java/org/alfresco/repo/security/permissions/PermissionCheckedCollection.java b/source/java/org/alfresco/repo/security/permissions/PermissionCheckedCollection.java index 94cd690077..305cb9cd05 100644 --- a/source/java/org/alfresco/repo/security/permissions/PermissionCheckedCollection.java +++ b/source/java/org/alfresco/repo/security/permissions/PermissionCheckedCollection.java @@ -51,7 +51,7 @@ public interface PermissionCheckedCollection /** * Get the number of objects in the original (unfiltered) collection that did - * not have any permission checks. + * not have any permission checks. * * @return number of entries from the original collection that were not checked */ diff --git a/source/java/org/alfresco/repo/security/permissions/impl/ModelDAO.java b/source/java/org/alfresco/repo/security/permissions/impl/ModelDAO.java index 9fe18f9b1d..bdcb61291c 100644 --- a/source/java/org/alfresco/repo/security/permissions/impl/ModelDAO.java +++ b/source/java/org/alfresco/repo/security/permissions/impl/ModelDAO.java @@ -44,7 +44,6 @@ public interface ModelDAO * Get the permissions that can be set for the given type. * * @param type - the type in the data dictionary. - * @return Set */ public Set getAllPermissions(QName type); @@ -52,8 +51,6 @@ public interface ModelDAO * Get the permissions that can be set for the given type. * * @param type - the type in the data dictionary. - * @param aspects Set - * @return Set */ public Set getAllPermissions(QName type, Set aspects); @@ -62,7 +59,6 @@ public interface ModelDAO * This is determined by the node type. * * @param nodeRef NodeRef - * @return Set */ public Set getAllPermissions(NodeRef nodeRef); @@ -70,7 +66,6 @@ public interface ModelDAO *Get the permissions that are exposed to be set for the given type. * * @param type - the type in the data dictionary. - * @return Set */ public Set getExposedPermissions(QName type); @@ -79,7 +74,6 @@ public interface ModelDAO * This is determined by the node type. * * @param nodeRef NodeRef - * @return Set */ public Set getExposedPermissions(NodeRef nodeRef); @@ -87,7 +81,6 @@ public interface ModelDAO * Get all the permissions that grant this permission. * * @param perm PermissionReference - * @return Set */ public Set getGrantingPermissions(PermissionReference perm); @@ -96,9 +89,7 @@ public interface ModelDAO * * @param required PermissionReference * @param qName QName - * @param aspectQNames Set * @param on RequiredPermission.On - * @return Set */ public Set getRequiredPermissions(PermissionReference required, QName qName, Set aspectQNames, RequiredPermission.On on); @@ -108,7 +99,6 @@ public interface ModelDAO * Get the permissions which are granted by the supplied permission. * * @param permissionReference PermissionReference - * @return Set */ public Set getGranteePermissions(PermissionReference permissionReference); @@ -116,7 +106,6 @@ public interface ModelDAO * Get the permissions which are granted by the supplied permission. * * @param permissionReference PermissionReference - * @return Set */ public Set getImmediateGranteePermissions(PermissionReference permissionReference); @@ -157,13 +146,11 @@ public interface ModelDAO /** * Get all exposed permissions (regardless of type exposure) - * @return Set */ public Set getAllExposedPermissions(); /** * Get all exposed permissions (regardless of type exposure) - * @return Set */ public Set getAllPermissions(); diff --git a/source/java/org/alfresco/repo/security/permissions/impl/PermissionServiceImpl.java b/source/java/org/alfresco/repo/security/permissions/impl/PermissionServiceImpl.java index 8897c024f6..b842f1b452 100644 --- a/source/java/org/alfresco/repo/security/permissions/impl/PermissionServiceImpl.java +++ b/source/java/org/alfresco/repo/security/permissions/impl/PermissionServiceImpl.java @@ -265,7 +265,6 @@ public class PermissionServiceImpl extends AbstractLifecycleBean implements Perm /** * Set the dynamic authorities * - * @param dynamicAuthorities List */ public void setDynamicAuthorities(List dynamicAuthorities) { diff --git a/source/java/org/alfresco/repo/security/permissions/impl/acegi/ACLEntryAfterInvocationProvider.java b/source/java/org/alfresco/repo/security/permissions/impl/acegi/ACLEntryAfterInvocationProvider.java index b52593f1d0..cba2d6d746 100644 --- a/source/java/org/alfresco/repo/security/permissions/impl/acegi/ACLEntryAfterInvocationProvider.java +++ b/source/java/org/alfresco/repo/security/permissions/impl/acegi/ACLEntryAfterInvocationProvider.java @@ -205,7 +205,6 @@ public class ACLEntryAfterInvocationProvider implements AfterInvocationProvider, /** * Types and aspects for which we will abstain on voting if they are present. - * @param unfilteredFor Set */ public void setUnfilteredFor(Set unfilteredFor) { diff --git a/source/java/org/alfresco/repo/security/permissions/impl/acegi/ACLEntryVoter.java b/source/java/org/alfresco/repo/security/permissions/impl/acegi/ACLEntryVoter.java index cda0971347..d01bcd17ed 100644 --- a/source/java/org/alfresco/repo/security/permissions/impl/acegi/ACLEntryVoter.java +++ b/source/java/org/alfresco/repo/security/permissions/impl/acegi/ACLEntryVoter.java @@ -200,7 +200,6 @@ public class ACLEntryVoter implements AccessDecisionVoter, InitializingBean /** * Types and aspects for which we will abstain on voting if they are present. - * @param abstainFor Set */ public void setAbstainFor(Set abstainFor) { diff --git a/source/java/org/alfresco/repo/security/permissions/impl/model/PermissionModel.java b/source/java/org/alfresco/repo/security/permissions/impl/model/PermissionModel.java index b6dcbfef5b..ceb81c4f87 100644 --- a/source/java/org/alfresco/repo/security/permissions/impl/model/PermissionModel.java +++ b/source/java/org/alfresco/repo/security/permissions/impl/model/PermissionModel.java @@ -1662,7 +1662,6 @@ public class PermissionModel implements ModelDAO * * @param required PermissionReference * @param qName QName - * @param aspectQNames Set * @param on RequiredPermission.On * @return the key */ diff --git a/source/java/org/alfresco/repo/security/sync/ChainingUserRegistrySynchronizer.java b/source/java/org/alfresco/repo/security/sync/ChainingUserRegistrySynchronizer.java index 9908dcf979..84ab1d8f28 100644 --- a/source/java/org/alfresco/repo/security/sync/ChainingUserRegistrySynchronizer.java +++ b/source/java/org/alfresco/repo/security/sync/ChainingUserRegistrySynchronizer.java @@ -335,7 +335,7 @@ public class ChainingUserRegistrySynchronizer extends AbstractLifecycleBean * Controls whether we trigger a differential sync when missing people log in. * * @param syncWhenMissingPeopleLogIn - * if we should trigger a sync when missing people log in + * true if we should trigger a sync when missing people log in */ public void setSyncWhenMissingPeopleLogIn(boolean syncWhenMissingPeopleLogIn) { @@ -346,7 +346,7 @@ public class ChainingUserRegistrySynchronizer extends AbstractLifecycleBean * Controls whether we trigger a differential sync when the subsystem starts up. * * @param syncOnStartup - * if we should trigger a sync on startup + * true if we should trigger a sync on startup */ public void setSyncOnStartup(boolean syncOnStartup) { diff --git a/source/java/org/alfresco/repo/site/script/ScriptSiteService.java b/source/java/org/alfresco/repo/site/script/ScriptSiteService.java index 708268bcd1..83c40850e3 100644 --- a/source/java/org/alfresco/repo/site/script/ScriptSiteService.java +++ b/source/java/org/alfresco/repo/site/script/ScriptSiteService.java @@ -291,7 +291,6 @@ public class ScriptSiteService extends BaseScopableProcessorExtension * Converts the given List of SiteInfo objects to a JavaScript friendly array * of Site objects. * - * @param siteInfos List * @return Array of Site objects */ protected Site[] makeSitesArray(List siteInfos) diff --git a/source/java/org/alfresco/repo/solr/NodeMetaData.java b/source/java/org/alfresco/repo/solr/NodeMetaData.java index 21586daa8d..bbdf52a04d 100644 --- a/source/java/org/alfresco/repo/solr/NodeMetaData.java +++ b/source/java/org/alfresco/repo/solr/NodeMetaData.java @@ -140,7 +140,6 @@ public class NodeMetaData this.childAssocs = childAssocs; } /** - * @param parentAssocs List * @param parentAssocsCrc Long */ public void setParentAssocs(List parentAssocs, Long parentAssocsCrc) diff --git a/source/java/org/alfresco/repo/tagging/TagScopePropertyMethodInterceptor.java b/source/java/org/alfresco/repo/tagging/TagScopePropertyMethodInterceptor.java index a559e906ea..4db22406ca 100644 --- a/source/java/org/alfresco/repo/tagging/TagScopePropertyMethodInterceptor.java +++ b/source/java/org/alfresco/repo/tagging/TagScopePropertyMethodInterceptor.java @@ -167,7 +167,6 @@ public class TagScopePropertyMethodInterceptor implements MethodInterceptor * @param nodeRef NodeRef * @param allNodeProperties Optional. If the caller has a current property map for the node being queried * then supplying it here saves a little time. This argument is allowed to be null. - * @return List */ protected List getTagSummary(NodeRef nodeRef, Map allNodeProperties) { diff --git a/source/java/org/alfresco/repo/template/BasePathResultsMap.java b/source/java/org/alfresco/repo/template/BasePathResultsMap.java index 69dbd64fb7..9f85c0f240 100644 --- a/source/java/org/alfresco/repo/template/BasePathResultsMap.java +++ b/source/java/org/alfresco/repo/template/BasePathResultsMap.java @@ -62,7 +62,6 @@ public abstract class BasePathResultsMap extends BaseTemplateMap * @param xpath XPath to execute * @param firstOnly True to return the first result only * - * @return List */ protected List getChildrenByXPath(String xpath, QueryParameterDefinition[] params, boolean firstOnly) { diff --git a/source/java/org/alfresco/repo/template/XSLTemplateModel.java b/source/java/org/alfresco/repo/template/XSLTemplateModel.java index 674248a441..58ca762c8a 100644 --- a/source/java/org/alfresco/repo/template/XSLTemplateModel.java +++ b/source/java/org/alfresco/repo/template/XSLTemplateModel.java @@ -113,7 +113,6 @@ public class XSLTemplateModel implements Map } /** - * @return Set * @see java.util.Map#keySet() */ public Set keySet() @@ -133,7 +132,6 @@ public class XSLTemplateModel implements Map } /** - * @param m Map * @see java.util.Map#putAll(java.util.Map) */ public void putAll(Map m) @@ -161,7 +159,6 @@ public class XSLTemplateModel implements Map } /** - * @return Collection * @see java.util.Map#values() */ public Collection values() diff --git a/source/java/org/alfresco/repo/thumbnail/ThumbnailRegistry.java b/source/java/org/alfresco/repo/thumbnail/ThumbnailRegistry.java index 1fb70a1275..78ce96ff6e 100644 --- a/source/java/org/alfresco/repo/thumbnail/ThumbnailRegistry.java +++ b/source/java/org/alfresco/repo/thumbnail/ThumbnailRegistry.java @@ -141,7 +141,6 @@ public class ThumbnailRegistry implements ApplicationContextAware, ApplicationLi /** * This method is used to inject the thumbnail definitions. - * @param thumbnailDefinitions List */ public void setThumbnailDefinitions(final List thumbnailDefinitions) { @@ -187,7 +186,7 @@ public class ThumbnailRegistry implements ApplicationContextAware, ApplicationLi /** * Get a list of all the thumbnail definitions * - * @return Collection collection of thumbnail definitions + * @return collection of thumbnail definitions */ public List getThumbnailDefinitions() { @@ -306,7 +305,6 @@ public class ThumbnailRegistry implements ApplicationContextAware, ApplicationLi /** * * @param mimetype String - * @return List * @deprecated Use {@link #getThumbnailDefinitions(String)} instead. */ @Deprecated diff --git a/source/java/org/alfresco/repo/transfer/ContentChunkProcessor.java b/source/java/org/alfresco/repo/transfer/ContentChunkProcessor.java index c78eac463f..4c8e68747f 100644 --- a/source/java/org/alfresco/repo/transfer/ContentChunkProcessor.java +++ b/source/java/org/alfresco/repo/transfer/ContentChunkProcessor.java @@ -38,7 +38,6 @@ public interface ContentChunkProcessor { /** * process this chunk of content data - * @param data Set */ public void processChunk(Set data) throws TransferException; diff --git a/source/java/org/alfresco/repo/transfer/RepoPrimaryManifestProcessorImpl.java b/source/java/org/alfresco/repo/transfer/RepoPrimaryManifestProcessorImpl.java index 8df3c67aea..a5548db12f 100644 --- a/source/java/org/alfresco/repo/transfer/RepoPrimaryManifestProcessorImpl.java +++ b/source/java/org/alfresco/repo/transfer/RepoPrimaryManifestProcessorImpl.java @@ -929,7 +929,6 @@ public class RepoPrimaryManifestProcessorImpl extends AbstractManifestProcessorB } /** - * @return Set */ protected Set getLocalProperties() { diff --git a/source/java/org/alfresco/repo/transfer/TransferServiceImpl2.java b/source/java/org/alfresco/repo/transfer/TransferServiceImpl2.java index 0b3da53c16..d88b23a0fd 100644 --- a/source/java/org/alfresco/repo/transfer/TransferServiceImpl2.java +++ b/source/java/org/alfresco/repo/transfer/TransferServiceImpl2.java @@ -441,7 +441,6 @@ public class TransferServiceImpl2 implements TransferService2 * * @param targetName String * @param definition TransferDefinition - * @param callbacks Collection * */ public void transferAsync(String targetName, TransferDefinition definition, Collection callbacks) @@ -526,7 +525,6 @@ public class TransferServiceImpl2 implements TransferService2 * * @param targetName String * @param definition TransferDefinition - * @param callbacks Collection */ public TransferEndEvent transfer(String targetName, TransferDefinition definition, Collection callbacks) throws TransferFailureException diff --git a/source/java/org/alfresco/repo/transfer/manifest/TransferManifestNodeHelper.java b/source/java/org/alfresco/repo/transfer/manifest/TransferManifestNodeHelper.java index e7b8cb7db1..f48dc955b5 100644 --- a/source/java/org/alfresco/repo/transfer/manifest/TransferManifestNodeHelper.java +++ b/source/java/org/alfresco/repo/transfer/manifest/TransferManifestNodeHelper.java @@ -63,7 +63,6 @@ public class TransferManifestNodeHelper /** * Gets the content properties for a node * @param node the node to process - * @return Set */ public static Set getContentData(TransferManifestNormalNode node) { diff --git a/source/java/org/alfresco/repo/version/common/AbstractVersionServiceImpl.java b/source/java/org/alfresco/repo/version/common/AbstractVersionServiceImpl.java index 3a06def70d..76a7b4bdd6 100644 --- a/source/java/org/alfresco/repo/version/common/AbstractVersionServiceImpl.java +++ b/source/java/org/alfresco/repo/version/common/AbstractVersionServiceImpl.java @@ -292,7 +292,6 @@ public abstract class AbstractVersionServiceImpl * * @param classRef QName * @param nodeRef NodeRef - * @param versionProperties Map * @param nodeDetails PolicyScope */ abstract protected void defaultOnCreateVersion( @@ -307,7 +306,6 @@ public abstract class AbstractVersionServiceImpl * @param classRef QName * @param preceedingVersion Version * @param versionNumber int - * @param versionProperties Map * @return String */ protected String invokeCalculateVersionLabel( diff --git a/source/java/org/alfresco/repo/virtual/ref/Reference.java b/source/java/org/alfresco/repo/virtual/ref/Reference.java index 21e2048fa4..cb81eecffa 100644 --- a/source/java/org/alfresco/repo/virtual/ref/Reference.java +++ b/source/java/org/alfresco/repo/virtual/ref/Reference.java @@ -323,7 +323,7 @@ public class Reference * @param mutatedNodeRef * @return a mutated version of this {@link Reference} corresponding to the * given mutated node or - * this Reference if no mutations are detected + * this Reference if no mutations are detected */ public Reference propagateNodeRefMutations(NodeRef mutatedNodeRef) { diff --git a/source/java/org/alfresco/repo/virtual/store/VirtualStore.java b/source/java/org/alfresco/repo/virtual/store/VirtualStore.java index 6a2f35edd6..0827a5f406 100644 --- a/source/java/org/alfresco/repo/virtual/store/VirtualStore.java +++ b/source/java/org/alfresco/repo/virtual/store/VirtualStore.java @@ -161,7 +161,7 @@ public interface VirtualStore *
  • sys:node-dbid
  • *
  • sys:store-identifier
  • *
  • sys:store-protocol
  • - *
      + *
    * * @param parentReference the parent reference - usually a container * @param propertyQName the fully qualified name of the property diff --git a/source/java/org/alfresco/repo/webdav/LockInfo.java b/source/java/org/alfresco/repo/webdav/LockInfo.java index 4846fbb5e3..ce4eaa4769 100644 --- a/source/java/org/alfresco/repo/webdav/LockInfo.java +++ b/source/java/org/alfresco/repo/webdav/LockInfo.java @@ -92,14 +92,12 @@ public interface LockInfo /** * Getter for sharedLockTokens list. * - * @return LinkedList */ Set getSharedLockTokens(); /** * Setter for sharedLockTokens list. * - * @param sharedLockTokens Set */ void setSharedLockTokens(Set sharedLockTokens); @@ -189,4 +187,4 @@ public interface LockInfo * @param lockTimeoutMins int */ void setTimeoutMinutes(int lockTimeoutMins); -} \ No newline at end of file +} diff --git a/source/java/org/alfresco/repo/workflow/WorkflowDeployer.java b/source/java/org/alfresco/repo/workflow/WorkflowDeployer.java index 08031daddb..b9acc57cca 100644 --- a/source/java/org/alfresco/repo/workflow/WorkflowDeployer.java +++ b/source/java/org/alfresco/repo/workflow/WorkflowDeployer.java @@ -180,7 +180,6 @@ public class WorkflowDeployer extends AbstractLifecycleBean /** * Sets the Workflow Definitions * - * @param workflowDefinitions List */ public void setWorkflowDefinitions(List workflowDefinitions) { diff --git a/source/java/org/alfresco/repo/workflow/WorkflowNodeConverter.java b/source/java/org/alfresco/repo/workflow/WorkflowNodeConverter.java index 4a5160e2d6..774619ac9c 100644 --- a/source/java/org/alfresco/repo/workflow/WorkflowNodeConverter.java +++ b/source/java/org/alfresco/repo/workflow/WorkflowNodeConverter.java @@ -59,7 +59,6 @@ public interface WorkflowNodeConverter /** * Converts a {@link Collection} of {@link NodeRef}s into a {@link List} of the appropriate Node type. - * @param values Collection * @return List */ List convertNodes(Collection values); @@ -70,7 +69,6 @@ public interface WorkflowNodeConverter * a {@link List} of the appropriate Node type is returned. Otherwise a * single instance of the appropriate Node type is returned. * - * @param values Collection * @param isMany boolean * @return Object */ diff --git a/source/java/org/alfresco/repo/workflow/activiti/ActivitiTypeConverter.java b/source/java/org/alfresco/repo/workflow/activiti/ActivitiTypeConverter.java index c55980515d..e8d3fc1b9b 100644 --- a/source/java/org/alfresco/repo/workflow/activiti/ActivitiTypeConverter.java +++ b/source/java/org/alfresco/repo/workflow/activiti/ActivitiTypeConverter.java @@ -120,8 +120,6 @@ public class ActivitiTypeConverter * including all instances for default domain * and excluding shared instances (THOR-206) for tenants * - * @param values List - * @param processKeyGetter Function * @return List */ public List doSpecialTenantFilterAndSafeConvert(List values, Function processKeyGetter) diff --git a/source/java/org/alfresco/repo/workflow/jbpm/JBPMEngine.java b/source/java/org/alfresco/repo/workflow/jbpm/JBPMEngine.java index 697c2f317b..844d53a213 100644 --- a/source/java/org/alfresco/repo/workflow/jbpm/JBPMEngine.java +++ b/source/java/org/alfresco/repo/workflow/jbpm/JBPMEngine.java @@ -3712,7 +3712,6 @@ public class JBPMEngine extends AlfrescoBpmEngine implements WorkflowEngine * JBoss JBPM Process Instance * @param definition WorkflowDefinition * @param endDate Date - * @param variables Map * @return Workflow instance */ protected WorkflowInstance createWorkflowInstance(ProcessInstance instance, WorkflowDefinition definition, Date endDate, Map variables) diff --git a/source/java/org/alfresco/service/cmr/audit/AuditQueryParameters.java b/source/java/org/alfresco/service/cmr/audit/AuditQueryParameters.java index 7c7d6de0a0..ad79b9742a 100644 --- a/source/java/org/alfresco/service/cmr/audit/AuditQueryParameters.java +++ b/source/java/org/alfresco/service/cmr/audit/AuditQueryParameters.java @@ -53,7 +53,7 @@ public class AuditQueryParameters * Defaults:
    *  forward = true;
    *  searchKeyValues = emptylist
    - *  :others = null + *  others = null */ public AuditQueryParameters() { diff --git a/source/java/org/alfresco/service/cmr/favourites/FavouritesService.java b/source/java/org/alfresco/service/cmr/favourites/FavouritesService.java index 99e0c4c9ee..bdadc87ad6 100644 --- a/source/java/org/alfresco/service/cmr/favourites/FavouritesService.java +++ b/source/java/org/alfresco/service/cmr/favourites/FavouritesService.java @@ -118,10 +118,7 @@ public interface FavouritesService * A paged list of favourites for user "userName". * * @param userName String - * @param types Set - * @param sortProps List> * @param pagingRequest PagingRequest - * @return PagingResults */ @Auditable(parameters = {"userName", "types", "pagingRequest"}) PagingResults getPagedFavourites(String userName, Set types, diff --git a/source/java/org/alfresco/service/cmr/ml/ContentFilterLanguagesService.java b/source/java/org/alfresco/service/cmr/ml/ContentFilterLanguagesService.java index c6de479561..2db11d0beb 100644 --- a/source/java/org/alfresco/service/cmr/ml/ContentFilterLanguagesService.java +++ b/source/java/org/alfresco/service/cmr/ml/ContentFilterLanguagesService.java @@ -80,7 +80,6 @@ public interface ContentFilterLanguagesService * Get the the odered filter which results form an extract of availableLanguages on the filterLanguages * * @param availableLanguages the languages list whose will be removed from the filterLanguages - * @return List */ @Auditable public List getMissingLanguages(List availableLanguages); diff --git a/source/java/org/alfresco/service/cmr/model/FileFolderService.java b/source/java/org/alfresco/service/cmr/model/FileFolderService.java index 251439ac53..429a22091e 100644 --- a/source/java/org/alfresco/service/cmr/model/FileFolderService.java +++ b/source/java/org/alfresco/service/cmr/model/FileFolderService.java @@ -442,8 +442,6 @@ public interface FileFolderService * with specification of which types to list and optional filtering (exclusion of certain child file/folder subtypes) and sorting * @param rootNodeRef NodeRef * @param searchTypeQNames QNames of types to list - * @param ignoreAspectQNames Set - * @param sortProps List> * @param pagingRequest PagingRequest * @return list of node refs, never null */ @@ -456,8 +454,6 @@ public interface FileFolderService * @param rootNodeRef NodeRef * @param assocTypeQNames QNames of assoc types to list * @param searchTypeQNames QNames of node types to list - * @param ignoreAspectQNames Set - * @param sortProps List> * @param pagingRequest PagingRequest * @return list of node refs, never null */ @@ -468,7 +464,6 @@ public interface FileFolderService /** * Helper method to transform a list of {@link NodeRef} to a list of {@link FileInfo} * - * @param nodeRefs List * @return list of {@link FileInfo} */ @Auditable(parameters = {"nodeRefs"}) diff --git a/source/java/org/alfresco/service/cmr/model/FileFolderUtil.java b/source/java/org/alfresco/service/cmr/model/FileFolderUtil.java index 1dc4ff6016..14d26d4892 100644 --- a/source/java/org/alfresco/service/cmr/model/FileFolderUtil.java +++ b/source/java/org/alfresco/service/cmr/model/FileFolderUtil.java @@ -76,10 +76,8 @@ public class FileFolderUtil * * @param service FileFolderService * @param parentNodeRef NodeRef - * @param pathElements List * @param folderTypeQName QName * @param behaviourFilter BehaviourFilter - * @param parentBehavioursToDisable Set * @return FileInfo */ public static FileInfo makeFolders(FileFolderService service, NodeRef parentNodeRef, List pathElements, diff --git a/source/java/org/alfresco/service/cmr/publishing/PublishingPackageEntry.java b/source/java/org/alfresco/service/cmr/publishing/PublishingPackageEntry.java index 00b181aa5a..0719916a30 100644 --- a/source/java/org/alfresco/service/cmr/publishing/PublishingPackageEntry.java +++ b/source/java/org/alfresco/service/cmr/publishing/PublishingPackageEntry.java @@ -52,7 +52,7 @@ public interface PublishingPackageEntry * * @return The snapshot of the node that this publishing package entry * relates to if this is a "publish" entry ( - * null if this is an "unpublish" entry). The snapshot is taken when + * null if this is an "unpublish" entry). The snapshot is taken when * the containing publishing package is placed on the publishing queue, so if this operation is called before that point * then it will return null. */ diff --git a/source/java/org/alfresco/service/cmr/publishing/channels/ChannelService.java b/source/java/org/alfresco/service/cmr/publishing/channels/ChannelService.java index 0d9cff2023..4cc9f53706 100644 --- a/source/java/org/alfresco/service/cmr/publishing/channels/ChannelService.java +++ b/source/java/org/alfresco/service/cmr/publishing/channels/ChannelService.java @@ -127,7 +127,6 @@ public interface ChannelService /** * Returns a list of all the channels that are capable of publishing the specified NodeRef. * @param nodeToPublish NodeRef - * @return List */ @NotAuditable List getRelevantPublishingChannels(NodeRef nodeToPublish); @@ -136,7 +135,6 @@ public interface ChannelService * Returns a list of all the channels that are capable of publishing in the specified Share site. * @param filterByPublishPermission If true then the returned channels are filtered to include only those * to which the authenticated user can publish - * @return List */ @NotAuditable List getPublishingChannels(boolean filterByPublishPermission); @@ -145,7 +143,6 @@ public interface ChannelService * Returns all {@link Channel}s cpaable of performing a status update for the given Share Site. * @param filterByPublishPermission If true then the returned channels are filtered to include only those * to which the authenticated user can post status updates - * @return List */ @NotAuditable List getStatusUpdateChannels(boolean filterByPublishPermission); diff --git a/source/java/org/alfresco/service/cmr/repository/AbstractTransformationSourceOptions.java b/source/java/org/alfresco/service/cmr/repository/AbstractTransformationSourceOptions.java index 86fba37817..541d66a471 100644 --- a/source/java/org/alfresco/service/cmr/repository/AbstractTransformationSourceOptions.java +++ b/source/java/org/alfresco/service/cmr/repository/AbstractTransformationSourceOptions.java @@ -117,7 +117,6 @@ public abstract class AbstractTransformationSourceOptions implements Transformat * * @param paramName String * @param paramValue Serializable - * @param params Map */ protected void putParameterIfNotNull(String paramName, Serializable paramValue, Map params) { diff --git a/source/java/org/alfresco/service/cmr/repository/SerializedTransformationOptionsAccessor.java b/source/java/org/alfresco/service/cmr/repository/SerializedTransformationOptionsAccessor.java index 3d05a76bea..9b4e99f24b 100644 --- a/source/java/org/alfresco/service/cmr/repository/SerializedTransformationOptionsAccessor.java +++ b/source/java/org/alfresco/service/cmr/repository/SerializedTransformationOptionsAccessor.java @@ -55,10 +55,7 @@ public interface SerializedTransformationOptionsAccessor * throws a {@link RenditionServiceException} if it isn't. Returns * defaultValue if the parameter value is null * - * @param * @param paramName String - * @param defaultValue - * @return */ public T getParamWithDefault(String paramName, T defaultValue); diff --git a/source/java/org/alfresco/service/cmr/repository/TransformationOptionLimitsMap.java b/source/java/org/alfresco/service/cmr/repository/TransformationOptionLimitsMap.java index dcaf52c623..8aef7deb04 100644 --- a/source/java/org/alfresco/service/cmr/repository/TransformationOptionLimitsMap.java +++ b/source/java/org/alfresco/service/cmr/repository/TransformationOptionLimitsMap.java @@ -41,21 +41,21 @@ import org.apache.commons.logging.LogFactory; * define transformation limits, without having to specify lots of spring XML. For example: * *
    - * <bean id="mimetypeLimits.OpenOffice" class="org.alfresco.service.cmr.repository.TransformationOptionLimitsMap">
    - *    <constructor-arg>
    - *       <value>
    + * <bean id="mimetypeLimits.OpenOffice" class="org.alfresco.service.cmr.repository.TransformationOptionLimitsMap">
    + *    <constructor-arg>
    + *       <i;value>
      *          *   txt maxSourceSizeKBytes ${content.transformer.OpenOffice.mimeTypeLimits.txt.pdf.maxSourceSizeKBytes} ;
      *          doc pdf maxSourceSizeKBytes ${content.transformer.OpenOffice.mimeTypeLimits.doc.pdf.maxSourceSizeKBytes}
    - *       </value>
    - *    </constructor-arg>
    - *    <constructor-arg>
    - *       <ref bean="mimetypeService" />
    - *    </constructor-arg>
    - * </bean>
    - * 
    + *       </value>
    + *    </constructor-arg>
    + *    <constructor-arg>
    + *       <ref bean="mimetypeService" />
    + *    </constructor-arg>
    + * </bean>
    + * 
    * The first constructor argument is a space separated list of values: *
    - * configuration ::= [ <source extension> <target extension> <property name> <value> ]* ";" ]*
    + * configuration ::= [ <source extension> <target extension> <property name> <value> ]* ";" ]*
      * property name ::= "maxSourceSizeKBytes" | "readLimitKBytes" | "readLimitTimeMs" | "timeoutMs" | "maxPages" | "pageLimit"
      * 
    * diff --git a/source/java/org/alfresco/service/cmr/repository/TransformationOptions.java b/source/java/org/alfresco/service/cmr/repository/TransformationOptions.java index d0e158ecc3..41a18f12a7 100644 --- a/source/java/org/alfresco/service/cmr/repository/TransformationOptions.java +++ b/source/java/org/alfresco/service/cmr/repository/TransformationOptions.java @@ -164,7 +164,6 @@ public class TransformationOptions implements Cloneable /** * Sets options from the supplied map. - * @param optionsMap Map */ public void set(Map optionsMap) { @@ -532,7 +531,6 @@ public class TransformationOptions implements Cloneable /** * Gets the appropriate source options for the given mimetype if available. * - * @param clazz Class * @return the source options for the mimetype */ @SuppressWarnings("unchecked") diff --git a/source/java/org/alfresco/service/cmr/repository/TransformationSourceOptions.java b/source/java/org/alfresco/service/cmr/repository/TransformationSourceOptions.java index 96ef88fd26..6e9f0c8b4a 100644 --- a/source/java/org/alfresco/service/cmr/repository/TransformationSourceOptions.java +++ b/source/java/org/alfresco/service/cmr/repository/TransformationSourceOptions.java @@ -104,7 +104,6 @@ public interface TransformationSourceOptions * Serializes the given transformation source options into the given parameter map. * * @param transformationSourceOptions TransformationSourceOptions - * @param parameters Map */ public void serialize(TransformationSourceOptions transformationSourceOptions, Map parameters); diff --git a/source/java/org/alfresco/service/cmr/rule/RuleService.java b/source/java/org/alfresco/service/cmr/rule/RuleService.java index 9b2075bc3f..9367052f36 100644 --- a/source/java/org/alfresco/service/cmr/rule/RuleService.java +++ b/source/java/org/alfresco/service/cmr/rule/RuleService.java @@ -325,7 +325,7 @@ public interface RuleService * Returns an empty list if none link. * * @param nodeRef node reference of a rule node - * @return List list of rule nodes that link to this passed rule node, empty if none + * @return list of rule nodes that link to this passed rule node, empty if none */ @Auditable(parameters = {"nodeRef"}) public List getLinkedFromRuleNodes(NodeRef nodeRef); diff --git a/source/java/org/alfresco/service/cmr/search/CategoryService.java b/source/java/org/alfresco/service/cmr/search/CategoryService.java index 0dd51b35b1..0010b20723 100644 --- a/source/java/org/alfresco/service/cmr/search/CategoryService.java +++ b/source/java/org/alfresco/service/cmr/search/CategoryService.java @@ -97,7 +97,6 @@ public interface CategoryService /** * Get all the classification entries * - * @return Collection */ @Auditable(parameters = {"storeRef"}) public Collection getClassifications(StoreRef storeRef); @@ -107,7 +106,6 @@ public interface CategoryService * * @param storeRef StoreRef * @param aspectName QName - * @return Collection */ @Auditable(parameters = {"storeRef", "aspectName"}) public Collection getRootCategories(StoreRef storeRef, QName aspectName); @@ -119,7 +117,6 @@ public interface CategoryService * @param aspectName QName * @param pagingRequest PagingRequest * @param sortByName boolean - * @return PagingResults */ @Auditable(parameters = {"storeRef", "aspectName", "pagingRequest", "sortByName"}) PagingResults getRootCategories(StoreRef storeRef, QName aspectName, PagingRequest pagingRequest, boolean sortByName); @@ -143,7 +140,6 @@ public interface CategoryService * @param storeRef StoreRef * @param aspectName QName * @param filter String - * @return Collection */ @Auditable(parameters = {"storeRef", "aspectName"}) public Collection getRootCategories(StoreRef storeRef, QName aspectName, String filter); @@ -184,7 +180,6 @@ public interface CategoryService /** * Get all the types that represent categories * - * @return Collection */ @Auditable public Collection getClassificationAspects(); diff --git a/source/java/org/alfresco/service/cmr/security/AuthorityService.java b/source/java/org/alfresco/service/cmr/security/AuthorityService.java index 13cb1b4cde..6d6964b62d 100644 --- a/source/java/org/alfresco/service/cmr/security/AuthorityService.java +++ b/source/java/org/alfresco/service/cmr/security/AuthorityService.java @@ -313,7 +313,6 @@ public interface AuthorityService * @param immediate - * if true, limit the depth to just immediate child, if false * find authorities at any depth - * @return Set */ @Auditable(parameters = {"type", "name", "immediate"}) public Set getContainedAuthorities(AuthorityType type, String name, boolean immediate); @@ -335,7 +334,6 @@ public interface AuthorityService * are required. * @param immediate - * limit to immediate parents or any ancestor. - * @return Set */ @Auditable(parameters = {"type", "name", "immediate"}) public Set getContainingAuthorities(AuthorityType type, String name, boolean immediate); @@ -483,7 +481,6 @@ public interface AuthorityService /** * Add a zone to an authority. * @param authorityName String - * @param zones Set */ @Auditable(parameters = {"authorityName", "zones"}) public void addAuthorityToZones(String authorityName, Set zones); @@ -491,7 +488,6 @@ public interface AuthorityService /** * Remove a zone from an authority * @param authorityName String - * @param zones Set */ @Auditable(parameters = {"authorityName", "zones"}) public void removeAuthorityFromZones(String authorityName, Set zones); @@ -512,8 +508,7 @@ public interface AuthorityService * @param immediate if true then only search root groups if parentAuthority is null, or immediate children of parentAuthority if it is non-null. * @param displayNamePattern String * @param zoneName - may be null to indicate all zones - * @return Set */ @Auditable(parameters = {"type"}) public Set findAuthorities(AuthorityType type, String parentAuthority, boolean immediate, String displayNamePattern, String zoneName); -} \ No newline at end of file +} diff --git a/source/java/org/alfresco/service/cmr/security/PersonService.java b/source/java/org/alfresco/service/cmr/security/PersonService.java index 059c5dca29..db04c390cf 100644 --- a/source/java/org/alfresco/service/cmr/security/PersonService.java +++ b/source/java/org/alfresco/service/cmr/security/PersonService.java @@ -201,7 +201,6 @@ public interface PersonService * Create a new person with the given properties. The userName is one of the * properties. Users with duplicate userNames are not allowed. * - * @param properties Map * @return NodeRef */ @Auditable(parameters = {"properties"}) @@ -325,7 +324,6 @@ public interface PersonService * @param filterProps list of filter properties (these are OR'ed) * @param sortProps sort property, eg. cm:username ascending * @param pagingRequest skip, max + optional query execution id - * @return PagingResults * *

    author janv * @since 4.1.2 diff --git a/source/java/org/alfresco/service/cmr/site/SiteService.java b/source/java/org/alfresco/service/cmr/site/SiteService.java index 7f2452ce7a..0390b003f8 100644 --- a/source/java/org/alfresco/service/cmr/site/SiteService.java +++ b/source/java/org/alfresco/service/cmr/site/SiteService.java @@ -184,7 +184,7 @@ public interface SiteService * @param filter filter (sites whose cm:name, cm:title or cm:description START WITH filter) * @param sitePresetFilter site preset filter (sites whose preset EQUALS sitePresetFilter) * @param size list maximum size or zero for all - * @return List list of site information + * @return list of site information */ @NotAuditable List listSites(String filter, String sitePresetFilter, int size); @@ -200,7 +200,7 @@ public interface SiteService * * @param filter filter * @param sitePresetFilter site preset filter - * @return List list of site information + * @return list of site information */ @NotAuditable List listSites(String filter, String sitePresetFilter); @@ -209,7 +209,7 @@ public interface SiteService * List all the sites that the specified user has a explicit membership to. * * @param userName user name - * @return List list of site information + * @return list of site information */ @NotAuditable List listSites(String userName); @@ -244,7 +244,7 @@ public interface SiteService * * @param userName user name * @param size list maximum size or zero for all - * @return List list of site information + * @return list of site information */ @NotAuditable List listSites(String userName, int size); @@ -472,7 +472,7 @@ public interface SiteService * Gets a list of all the currently available roles that a user can perform on * all sites * - * @return List list of available roles + * @return list of available roles */ @NotAuditable List getSiteRoles(); @@ -482,7 +482,7 @@ public interface SiteService * a specific site. This will generally only differ from {@link #getSiteRoles()} * if your site is of a custom type. * - * @return List list of available roles + * @return list of available roles */ @NotAuditable List getSiteRoles(String shortName); @@ -530,7 +530,7 @@ public interface SiteService * List all the sites that the specified user has a explicit membership to. * * @param userName user name - * @return PagingResults paged list of site information + * @return paged list of site information */ @NotAuditable PagingResults listSitesPaged(final String userName, List> sortProps, final PagingRequest pagingRequest); diff --git a/source/java/org/alfresco/service/cmr/subscriptions/SubscriptionService.java b/source/java/org/alfresco/service/cmr/subscriptions/SubscriptionService.java index de1d11a11b..dacef7e68c 100644 --- a/source/java/org/alfresco/service/cmr/subscriptions/SubscriptionService.java +++ b/source/java/org/alfresco/service/cmr/subscriptions/SubscriptionService.java @@ -189,7 +189,7 @@ public interface SubscriptionService extends ActivateableBean * the id of the user * @param isPrivate * true - set list private, - * false - set list public + * false - set list public * */ @Auditable(parameters = { "userId", "isPrivate" }) diff --git a/source/java/org/alfresco/service/cmr/tagging/TaggingService.java b/source/java/org/alfresco/service/cmr/tagging/TaggingService.java index 45d6026327..0c7953dd38 100644 --- a/source/java/org/alfresco/service/cmr/tagging/TaggingService.java +++ b/source/java/org/alfresco/service/cmr/tagging/TaggingService.java @@ -59,7 +59,7 @@ public interface TaggingService /** * Get all the tags currently available * - * @return List list of tags + * @return list of tags */ @NotAuditable List getTags(StoreRef storeRef); @@ -79,7 +79,7 @@ public interface TaggingService * * @param storeRef store reference * @param filter tag filter - * @return List list of tags + * @return list of tags */ @NotAuditable List getTags(StoreRef storeRef, String filter); @@ -169,7 +169,7 @@ public interface TaggingService * Get all the tags on a node * * @param nodeRef node reference - * @return List list of tags on the node + * @return list of tags on the node */ @NotAuditable List getTags(NodeRef nodeRef); @@ -178,7 +178,7 @@ public interface TaggingService * Get a paged list of all the tags on a node * * @param nodeRef node reference - * @return PagingResults list of tags on the node + * @return list of tags on the node */ @NotAuditable PagingResults> getTags(NodeRef nodeRef, PagingRequest pagingRequest); @@ -260,7 +260,7 @@ public interface TaggingService * If no tag scopes are found an empty list is returned. * * @param nodeRef node reference - * @return List list of tag scopes + * @return list of tag scopes */ @NotAuditable List findAllTagScopes(NodeRef nodeRef); @@ -269,7 +269,7 @@ public interface TaggingService * Find all nodes that have been tagged with the specified tag. * * @param tag tag name - * @return List list of nodes tagged with specified tag, empty of none found + * @return list of nodes tagged with specified tag, empty of none found */ @NotAuditable List findTaggedNodes(StoreRef storeRef, String tag); @@ -280,7 +280,7 @@ public interface TaggingService * * @param tag tag name * @param nodeRef node providing context for the search - * @return List list of nodes tagged in the context specified, empty if none found + * @return list of nodes tagged in the context specified, empty if none found */ @NotAuditable List findTaggedNodes(StoreRef storeRef, String tag, NodeRef nodeRef); diff --git a/source/java/org/alfresco/service/cmr/thumbnail/ThumbnailService.java b/source/java/org/alfresco/service/cmr/thumbnail/ThumbnailService.java index 1db8cb4d1b..d10237bab1 100644 --- a/source/java/org/alfresco/service/cmr/thumbnail/ThumbnailService.java +++ b/source/java/org/alfresco/service/cmr/thumbnail/ThumbnailService.java @@ -138,7 +138,7 @@ public interface ThumbnailService * @param contentProperty content property name * @param mimetype mimetype * @param options transformation options - * @return List list of matching thumbnail node references, empty if no matches found + * @return list of matching thumbnail node references, empty if no matches found */ @Auditable(parameters = {"node", "contentProperty", "mimetype", "options"}) List getThumbnails(NodeRef node, QName contentProperty, String mimetype, TransformationOptions options); diff --git a/source/java/org/alfresco/service/cmr/transfer/TransferDefinition.java b/source/java/org/alfresco/service/cmr/transfer/TransferDefinition.java index 77ae09ede8..b7406b22e1 100644 --- a/source/java/org/alfresco/service/cmr/transfer/TransferDefinition.java +++ b/source/java/org/alfresco/service/cmr/transfer/TransferDefinition.java @@ -79,7 +79,6 @@ public class TransferDefinition implements Serializable /** * Set which nodes to transfer - * @param nodes Collection */ public void setNodes(Collection nodes) { @@ -93,7 +92,6 @@ public class TransferDefinition implements Serializable /** * Set nodes that are to be explicitly removed from the the target repository - * @param nodes Collection */ public void setNodesToRemove(Collection nodes) { @@ -111,7 +109,6 @@ public class TransferDefinition implements Serializable /** * Get which nodes to transfer - * @return Set */ public Set getNodes() { @@ -120,7 +117,6 @@ public class TransferDefinition implements Serializable /** * Get the list of nodes that are to be explicitly removed from the target repository - * @return Set */ public Set getNodesToRemove() { diff --git a/source/java/org/alfresco/service/cmr/workflow/WorkflowService.java b/source/java/org/alfresco/service/cmr/workflow/WorkflowService.java index c964ecdacf..1a1b072ff3 100644 --- a/source/java/org/alfresco/service/cmr/workflow/WorkflowService.java +++ b/source/java/org/alfresco/service/cmr/workflow/WorkflowService.java @@ -248,7 +248,6 @@ public interface WorkflowService * Gets all "in-flight" workflow instances according to the specified workflowInstanceQuery parameter * * @param workflowInstanceQuery WorkflowInstanceQuery - * @return List */ public List getWorkflows(WorkflowInstanceQuery workflowInstanceQuery); @@ -396,11 +395,9 @@ public interface WorkflowService /** * Gets the start task instances for the given workflow instances. * - * @param workflowInstanceIds List * @param sameSession indicates that the returned {@link WorkflowTask} elements will be used in * the same session. If {@code true}, the returned List will be a lazy loaded list * providing greater performance. - * @return List */ @Auditable(parameters = {"pathIds"}) public List getStartTasks(List workflowInstanceIds, boolean sameSession); diff --git a/source/java/org/alfresco/service/cmr/workflow/WorkflowTaskQuery.java b/source/java/org/alfresco/service/cmr/workflow/WorkflowTaskQuery.java index c1af203969..15ab1d5686 100644 --- a/source/java/org/alfresco/service/cmr/workflow/WorkflowTaskQuery.java +++ b/source/java/org/alfresco/service/cmr/workflow/WorkflowTaskQuery.java @@ -125,7 +125,6 @@ public class WorkflowTaskQuery } /** - * @param taskCustomProps Map */ public void setTaskCustomProps(Map taskCustomProps) { @@ -261,7 +260,6 @@ public class WorkflowTaskQuery } /** - * @param processCustomProps Map */ public void setProcessCustomProps(Map processCustomProps) { diff --git a/source/java/org/alfresco/util/TypeConstraint.java b/source/java/org/alfresco/util/TypeConstraint.java index 1770e3c7dc..8252dd9a57 100644 --- a/source/java/org/alfresco/util/TypeConstraint.java +++ b/source/java/org/alfresco/util/TypeConstraint.java @@ -108,7 +108,6 @@ public class TypeConstraint /** * Processes the user-defined list of types into valid QNames & models, it validates them * against the dictionary and also supports wildcards - * @param typeNames List */ protected void preprocessExcludedTypes(List typeNames) { @@ -135,7 +134,6 @@ public class TypeConstraint /** * Processes the user-defined list of types into valid QNames & models, it validates them * against the dictionary and also supports wildcards - * @param typeNames List */ protected void preprocessExpectedTypes(List typeNames) { diff --git a/source/java/org/alfresco/util/schemacomp/ComparisonUtils.java b/source/java/org/alfresco/util/schemacomp/ComparisonUtils.java index c91908eb0e..0c414d7b88 100644 --- a/source/java/org/alfresco/util/schemacomp/ComparisonUtils.java +++ b/source/java/org/alfresco/util/schemacomp/ComparisonUtils.java @@ -69,8 +69,6 @@ public interface ComparisonUtils /** * Compare collections of {@link DbObject}s using their {@link DbObject#diff(DbObject, DiffContext)} method. * - * @param leftCollection Collection - * @param rightCollection Collection * @param ctx - context */ void compareCollections(Collection leftCollection, @@ -87,4 +85,4 @@ public interface ComparisonUtils */ void compareSimple(DbProperty left, DbProperty right, DiffContext ctx); -} \ No newline at end of file +} diff --git a/source/java/org/alfresco/util/schemacomp/model/DbObject.java b/source/java/org/alfresco/util/schemacomp/model/DbObject.java index 6e91daefa1..0267bae59c 100644 --- a/source/java/org/alfresco/util/schemacomp/model/DbObject.java +++ b/source/java/org/alfresco/util/schemacomp/model/DbObject.java @@ -108,7 +108,6 @@ public interface DbObject /** * Set/override the validators associated with this database object. * - * @param validators List */ void setValidators(List validators); diff --git a/source/java/org/alfresco/util/schemacomp/model/Index.java b/source/java/org/alfresco/util/schemacomp/model/Index.java index 9d6eb8cc44..51d3323490 100644 --- a/source/java/org/alfresco/util/schemacomp/model/Index.java +++ b/source/java/org/alfresco/util/schemacomp/model/Index.java @@ -52,7 +52,6 @@ public class Index extends AbstractDbObject /** * @param table the parent table - * @param columnNames List */ public Index(Table table, String name, List columnNames) { diff --git a/source/java/org/alfresco/util/schemacomp/model/PrimaryKey.java b/source/java/org/alfresco/util/schemacomp/model/PrimaryKey.java index d0644396b3..e4296b379c 100644 --- a/source/java/org/alfresco/util/schemacomp/model/PrimaryKey.java +++ b/source/java/org/alfresco/util/schemacomp/model/PrimaryKey.java @@ -52,8 +52,6 @@ public class PrimaryKey extends AbstractDbObject * Constructor * @param table the parent table * @param name String - * @param columnNames List - * @param columnOrders List */ public PrimaryKey(Table table, String name, List columnNames, List columnOrders) { diff --git a/source/java/org/alfresco/util/schemacomp/validator/DbValidator.java b/source/java/org/alfresco/util/schemacomp/validator/DbValidator.java index 806fa9abc6..535628d3c6 100644 --- a/source/java/org/alfresco/util/schemacomp/validator/DbValidator.java +++ b/source/java/org/alfresco/util/schemacomp/validator/DbValidator.java @@ -68,7 +68,6 @@ public interface DbValidator /** * Get the complete set of validator properties in use. * - * @return Set */ Set getPropertyNames();