From 09c9d851a569c3d197592c5b42def9de90f2ad21 Mon Sep 17 00:00:00 2001 From: Ben Bosman Date: Fri, 26 Apr 2019 09:32:29 +0200 Subject: [PATCH] JavaDoc --- .../content/factory/ContentServiceFactory.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dspace-api/src/main/java/org/dspace/content/factory/ContentServiceFactory.java b/dspace-api/src/main/java/org/dspace/content/factory/ContentServiceFactory.java index 7dee8f607f..ab09eb2347 100644 --- a/dspace-api/src/main/java/org/dspace/content/factory/ContentServiceFactory.java +++ b/dspace-api/src/main/java/org/dspace/content/factory/ContentServiceFactory.java @@ -85,30 +85,30 @@ public abstract class ContentServiceFactory { public abstract SiteService getSiteService(); /** - * Return the list of all the available implementations of the RelationshipTypeService interface + * Return the implementation of the RelationshipTypeService interface * - * @return the list of RelationshipTypeService + * @return the RelationshipTypeService */ public abstract RelationshipTypeService getRelationshipTypeService(); /** - * Return the list of all the available implementations of the RelationshipService interface + * Return the implementation of the RelationshipService interface * - * @return the list of RelationshipService + * @return the RelationshipService */ public abstract RelationshipService getRelationshipService(); /** - * Return the list of all the available implementations of the EntityTypeService interface + * Return the implementation of the EntityTypeService interface * - * @return the list of EntityTypeService + * @return the EntityTypeService */ public abstract EntityTypeService getEntityTypeService(); /** - * Return the list of all the available implementations of the EntityService interface + * Return the implementation of the EntityService interface * - * @return the list of EntityService + * @return the EntityService */ public abstract EntityService getEntityService();