Added constructor

public WorkspaceResourcesExplorerPanelPaginated(String folderId, boolean showOnlyFolders, List<String> showProperties, FilterCriteria filter, boolean showGcubeInfo, DISPLAY_FIELD sortByColumn)

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/widgets/workspace-explorer@151060 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2017-07-13 14:52:59 +00:00
parent b7985d206a
commit 9e47ee680c
1 changed files with 19 additions and 1 deletions

View File

@ -69,6 +69,23 @@ public class WorkspaceResourcesExplorerPanelPaginated extends WorkspaceResources
super(folderId, showOnlyFolders, showProperties, filter);
}
/**
* Instantiates a new workspace resources explorer panel paginated.
*
* @param folderId the folder id
* @param showOnlyFolders the show only folders
* @param showProperties the show properties
* @param filter the filter
* @param showGcubeInfo the show gcube info
* @param sortByColumn the sort by column
* @throws Exception
*/
public WorkspaceResourcesExplorerPanelPaginated(String folderId, boolean showOnlyFolders, List<String> showProperties, FilterCriteria filter, boolean showGcubeInfo, DISPLAY_FIELD sortByColumn) throws Exception {
super(folderId,showOnlyFolders,showProperties,filter,showGcubeInfo,sortByColumn);
}
/**
* Inits the explorer.
*
@ -103,7 +120,8 @@ public class WorkspaceResourcesExplorerPanelPaginated extends WorkspaceResources
/**
* Hard refresh. It performs a purge of cached page and reload the folder passed in input
* @throws Exception
*
* @throws Exception the exception
*/
public void hardRefresh() throws Exception{
wsExplorer.purgeCache();