added javaDoc

This commit is contained in:
Mykhaylo
2021-09-29 13:34:46 +02:00
parent bc0805017f
commit d6d2f27483

View File

@@ -59,6 +59,15 @@ public interface EntityTypeService extends DSpaceCRUDService<EntityType> {
*/ */
public EntityType create(Context context, String entityTypeString) throws SQLException, AuthorizeException; public EntityType create(Context context, String entityTypeString) throws SQLException, AuthorizeException;
/**
* Retrieves all entity types related to the collections on which the current user can deposit
*
* @param context DSpace context object
* @return
* @throws SQLException If database error
* @throws SolrServerException If there is a problem in communicating with Solr
* @throws IOException If IO error
*/
public List<String> getSubmitAuthorizedTypes(Context context) throws SQLException, SolrServerException, IOException; public List<String> getSubmitAuthorizedTypes(Context context) throws SQLException, SolrServerException, IOException;
/** /**