minor fixes

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-catalogue/ckan-util-library@135024 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Costantino Perciante 2016-11-29 09:32:32 +00:00
parent 8d6b1771ec
commit 6f1812ded6
2 changed files with 7 additions and 0 deletions

View File

@ -71,6 +71,12 @@ public interface DataCatalogue {
* @return the catalogue url
*/
String getCatalogueUrl();
/**
* Return the manage product property
* @return the manage product property
*/
boolean isManageProductEnabled();
/**
* Get the list of licenses' titles.

View File

@ -150,6 +150,7 @@ public class DataCatalogueImpl implements DataCatalogue{
* Check if the manage product is enabled
* @return
*/
@Override
public boolean isManageProductEnabled() {
return MANAGE_PRODUCT_BUTTON;
}