Fixed javadoc warning

This commit is contained in:
Luca Frosini 2019-10-04 17:04:50 +02:00
parent c6ae43578f
commit c13656d3e3
3 changed files with 2 additions and 7 deletions

View File

@ -229,9 +229,6 @@ public class Validator {
/**
* Retrieve an instance of the library for the scope
* @param scope if it is null it is evaluated from the session
* @return
* @throws Exception
*/
public void createGroupAsSysAdmin(String title) throws Exception {
String sysAdminAPI = CKANUtility.getSysAdminAPI();
@ -606,8 +603,6 @@ public class Validator {
/**
* Get the group hierarchy
* @param groupName
* @param isApplication
* @return
* @throws Exception
*/
public static List<String> getGroupHierarchyNames(String groupName) throws Exception {

View File

@ -132,7 +132,7 @@ public abstract class CKAN {
/**
* Validate the CKAN response and return the
* @param json
* @return
* @return the validated response as JsonNode
*/
protected JsonNode validateCKANResponse(String json) {
JsonNode jsonNode = getAsJsonNode(json);

View File

@ -45,7 +45,7 @@ public class MetadataUtility {
/**
* Returns the names of the metadata profiles in a given context
* @param context
* @return
* @return the set of profile names
* @throws Exception
*/
public Set<String> getProfilesNames() throws Exception {